12345678910111213141516171819 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>New background-position syntax</title>
- <style>
- .text-with-icon {
- display: inline-block;
- padding-right: 4em;
- background-image: url(css/img/icon.png);
- background-repeat: no-repeat;
- background-position: right 1em top 50%;
- }
- </style>
- </head>
- <body>
- <p class="text-with-icon">Activate flux capacitor</p>
- </body>
- </html>
|