Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #IDSelector1
  2. {
  3. font-weight:bold;
  4. }
  5.  
  6. #IDSelector2
  7. {
  8. text-decoration:underline;
  9. }
  10.  
  11. .ClassSelector1
  12. {
  13. color:red;
  14. }
  15.  
  16. <html>
  17. <head></head>
  18. <body>
  19.  
  20. <span id="IDSelector1" class="ClassSelector1">Text Here</span> <!-- This will be bold and red but not underlined -->
  21. <span id="IDSelector2" class="ClassSelector1">Text Here</span> <!-- This will be underlined and red but not bold -->
  22.  
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement