Advertisement
Raihanulkarim5

CSS 01

Aug 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1.  
  2. *{
  3.     background:cyan;
  4.     width:100%;
  5.    
  6. }
  7.  
  8. .Header {
  9.     color:#333300;
  10.     text-align:center;
  11. }
  12.  
  13. div >p {
  14.     font-family:verdana;
  15.     color:#FFFFFF;
  16.     background:#99CCFF;
  17.     text-align:left;
  18. }
  19. #Nothing {
  20.     background-color:red ;
  21.     font-size:15px;
  22. }
  23. h2,p{
  24.     font-family:arial;
  25.     color:#660033;
  26.     text-align:center;
  27. }
  28.  
  29. ul,ol {
  30.     font-family:arial;
  31.     color:#660033;
  32. }
  33. div+p {
  34.     background:#99FF99;
  35.    
  36. }
  37.  
  38. a[target=_blank]{
  39.     color:#070606;
  40.     background:#FFFFFF;
  41. }
  42. a:hover{
  43.     background:#FFE793;
  44. }
  45.  
  46. img {
  47.     height: 216px;
  48.     border: 1px dashed;
  49.     border-radius: 40px;
  50. }
  51. img:hover{
  52.     background:#FF99FF;
  53.    
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement