Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <div id="container">
  2.  
  3. <div id ="horizontal">
  4. <div id="border2"></div>
  5. </div>
  6. <div id="vertical">
  7. <div id="border"></div>
  8. </div>
  9.  
  10. </div>
  11.  
  12. #container {background: black;
  13. width: 300px;
  14. height: 300px;
  15. margin: 0 auto;
  16. position:relative
  17. }
  18.  
  19. #vertical {background: white;
  20. position: absolute;
  21. width: 70px;
  22. left: 40% ;
  23. height: 300px;
  24. top:0;
  25. }
  26.  
  27.  
  28. #horizontal {background: white;
  29. position: absolute;
  30.  
  31.  
  32. height: 60px;
  33. top:40%;
  34. left:0;
  35. width: 100%;
  36. }
  37.  
  38. #border {
  39. width: 100%;
  40. height: 150px;
  41.  
  42. margin-top: 60px;
  43.  
  44. border-top: 2px dashed black;
  45. border-bottom: 2px dashed black;
  46. }
  47.  
  48. #border2 {
  49. width: 80%;
  50. height: 60px;
  51.  
  52.  
  53. border-right: 2px dashed black;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement