Guest User

Untitled

a guest
Jan 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <section><h1>H1 tag in a section tag</h1></section>
  2. <article><h1>H1 tag in an article tag</h1></article>
  3. <h1>H1 tag in nothing</h1>
  4.  
  5. :-webkit-any(article,aside,nav,section) h1 {
  6. font-size: 1.5em;
  7. -webkit-margin-before: 0.83em;
  8. -webkit-margin-after: 0.83em;
  9. }
  10.  
  11. h1 {
  12. display: block;
  13. font-size: 2em;
  14. -webkit-margin-before: 0.67em;
  15. -webkit-margin-after: 0.67em;
  16. -webkit-margin-start: 0px;
  17. -webkit-margin-end: 0px;
  18. font-weight: bold;
  19. }
  20.  
  21. <!DOCTYPE html>
  22. <html>
  23. <head>
  24. <title>Page Title</title>
  25. </head>
  26. <body>
  27. <section><h1>H1 tag in a section tag</h1></section>
  28. <article><h1>H1 tag in an article tag</h1></article>
  29. <h1>H1 tag in nothing</h1>
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment