05-08-new-background-position-syntax.html 433 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>New background-position syntax</title>
  6. <style>
  7. .text-with-icon {
  8. display: inline-block;
  9. padding-right: 4em;
  10. background-image: url(css/img/icon.png);
  11. background-repeat: no-repeat;
  12. background-position: right 1em top 50%;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <p class="text-with-icon">Activate flux capacitor</p>
  18. </body>
  19. </html>