Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. ```<style type="text/css">
  2. p{ color: blue; }
  3. .red{ color: red; }
  4. #p3{ color: green; }
  5. </style>
  6. </head>
  7. <body>
  8. <p>第一行文本</p>
  9. <p class="red">第二行文本</p>
  10. <p class="red" id="p3">第三行文本</p>
  11. <p style="color: orange;" class="red" id="p3">第四行文本</p>
  12. </body>```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement