here2share

HTML p-style override by class

Aug 13th, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. #para1 {
  6. text-align: center;
  7. color: red;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12.  
  13. <p id="para1">Hello World!</p>
  14. <p>This paragraph is not affected by the style.</p>
  15.  
  16. </body>
  17. </html>
Add Comment
Please, Sign In to add comment