Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Css代码
  2. ```<style type="text/css">
  3. p{ font-size: 30px; }
  4. p.c{ text-decoration: underline; }
  5. .c{ color: blue;}
  6. </style>
  7. </head>
  8. <body>
  9. <p id="p1">p1</p>
  10. <p id="p2">p2</p>
  11. <p id="p3" class="c">p3</p>
  12. <h1 id="h1" class="c">h1</h1>
  13. <h2 id="h2">h2</h2>
  14. <div id="d1">d1</div>
  15. </body>```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement