Advertisement
RedMan99

Untitled

Jun 4th, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. a:hover {
  2.     color: #cc0000;
  3.     font-weight: bold;
  4.     text-decoration: none;
  5. }
  6. // hover => like zoom on the html 'a' when you select it
  7. //visited => if you already visit the site so u can apply another css code
  8.  
  9. p:first-child{
  10.     font-family:cursive;
  11.     }
  12. //first-child it means that the code css will apply on the first paragraph in the code (we use it only with the first one )
  13.  
  14. p:nth-child(variale){
  15. color:#00FF00;
  16. }
  17. //we can use with any position
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement