Advertisement
Guest User

marayev

a guest
Apr 1st, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <h1>My Web Page</h1>
  5. <style type="text/css">
  6. body{margin:20px;}
  7. #one{
  8. height:350px;
  9. width:500px;
  10. padding:10px;
  11. border:10px dashed blue;
  12.  
  13. }
  14. #two{
  15. border:8px solid green;
  16. padding:25px 22px 22px 22px;
  17. width:550px;
  18. height:400px;
  19. }
  20.  
  21.  
  22. #trans{
  23. background-color:#ddff99;
  24. width:270px;
  25. height:80px;
  26. position:absolute;
  27. padding:10px;
  28. border:5px solid red;
  29. top:200px;
  30. right:20px;
  31. }
  32.  
  33. #three{
  34. background-color:#ff00ff;
  35. width:210px;
  36. height:280px;
  37. position:absolute;
  38. padding:10px;
  39. border:15px solid #00ffff;
  40. top:250px;
  41. right:150px;
  42. overflow:hidden;
  43. }
  44.  
  45. #four{
  46. width:100%;
  47. height:100%;
  48. padding:5px;
  49. }
  50.  
  51. </style>
  52.  
  53. </head>
  54.  
  55. <body>
  56.  
  57. <div id="two">
  58. <div id="one">
  59. </div>
  60. </div>
  61. <div id="trans">
  62.  
  63.  
  64. </div>
  65.  
  66. <div id="three">
  67.  
  68. </div>
  69.  
  70. </body>
  71.  
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement