Advertisement
ttxnam

Demo corner

Oct 23rd, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Demo corner</title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <style type="text/css">
  7. #page{
  8. position: relative;
  9. margin-top: 30px;
  10. margin-left: 30px;
  11. background: #6F0020;
  12. width: 200px;
  13. height: 100px;
  14. padding:10px;
  15. overflow: hidden;
  16. }
  17.  
  18. .corner1, .corner2, .corner3, .corner4{
  19. width: 26px;
  20. height: 26px;
  21. background: white;
  22. -moz-border-radius: 13px;
  23. -webkit-border-radius: 13px;
  24. border-radius: 13px;
  25. }
  26.  
  27. .corner1{  
  28. position: absolute;
  29. top: -13px;
  30. left: -13px;
  31. }
  32.  
  33. .corner2{  
  34. position: absolute;
  35. top: -13px;
  36. right: -13px;
  37. }
  38.  
  39. .corner3{  
  40. position: absolute;
  41. bottom: -13px;
  42. right: -13px;
  43. }
  44.  
  45. .corner4{  
  46. position: absolute;
  47. bottom: -13px;
  48. left: -13px;
  49. }
  50.  
  51. </style>
  52. </head>
  53.  
  54. <body>
  55. <div id="page">
  56. <span class="corner1"></span><span class="corner2"></span><span class="corner3"></span><span class="corner4"></span>
  57. Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test
  58. </div>
  59.  
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement