Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #main{
  5. display:flex;
  6. margin:100 auto;
  7. background-image:(url);
  8. height:500px;
  9. width:900px;
  10. }
  11.  
  12. #l1{
  13. width:860px;
  14. height:150px;
  15. background-color:yellow;
  16.  
  17. }
  18. #jp{
  19. margin:10px;
  20. width:180px;
  21. background-color:blue;
  22. height:150px;
  23.  
  24. }
  25. #m2{
  26. margin:10px;
  27. width:580px;
  28. background-color:red;
  29. height:150px;
  30.  
  31. }
  32. #l2{
  33. margin:10px;
  34. width:780px;
  35. height:150px;
  36. background-color:green;
  37. }
  38. #l3{
  39. margin:10px;
  40. width:780px;
  41. height:150px;
  42. background-color:grey;
  43.  
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div id="main">
  49. <div id="jp">jpg</div>
  50. <div id="m2">11111</div>
  51. <div id="l2">222</div>
  52. <div id="l3">5555</div>
  53. </div>
  54.  
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement