Advertisement
CelestialFury

Untitled

Sep 29th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Colourful Boxes</title>
  5. <style type="text/css">
  6. body {
  7. background-color:#000000
  8. }
  9. #divRed {
  10. background-color:#FF0000;
  11. width: 150px;
  12. height: 150px;
  13. border: 15px solid yellow;
  14. margin: 10px;
  15. }
  16.  
  17. #divPink {
  18. background-color:#00FFFF;
  19. width: 30px;
  20. height: 30px;
  21. border: 75px solid #FF00FF;
  22. margin: 10px;
  23. }
  24.  
  25. #divVertical {
  26. background-color:#00FF00;
  27. width: 60px;
  28. height: 180px;
  29. border-width: 0px 60px;
  30. border-style: solid;
  31. border-left-color:#0000FF;
  32. border-right-color:#FFFFFF;
  33. margin: 10px;
  34. }
  35. #divFourth {
  36. background-color:#FF0000;
  37. width: 30px;
  38. height: 30px;
  39. border: 75px solid #FF00FF;
  40. border-top-color:#c80000;
  41. border-left-color:#320000;
  42. border-right-color:#960000;
  43. border-bottom-color:#640000;
  44. margin: 10px;
  45.  
  46. }
  47.  
  48. </style>
  49. </head>
  50.  
  51. <body>
  52.  
  53. <div id="divRed"></div>
  54. <div id="divPink"></div>
  55. <div id="divVertical"></div>
  56. <div id="divFourth"></div>
  57.  
  58.  
  59.  
  60.  
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement