Advertisement
JoseMartinMolina

CSS 1

Jan 30th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p, h2 {font-size: 1.5em; font-style: italic}
  5. h1 {color:fuchsia}
  6. body {background-color: cyan}
  7. div {border-style: solid; border-width:15px;
  8. background-color: #CC00CC}
  9. div p {text-decoration: overline}
  10. .miclase {font-size: 1.5ex;}
  11. </style>
  12. </head>
  13. <body>
  14. <p> estoy fuera del div</p>
  15. <div>
  16. <p class="miclase"> hola </p>
  17. <h1> que tal </h1>
  18. <p> Todo Bien </p>
  19.  
  20. </div>
  21. <h2> este es h2</h2>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement