Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="hw1.css">
  5. </head>
  6. <body>
  7. <div>
  8.  
  9. </div>
  10.  
  11. <div id="container">
  12. <div class="content">
  13.  
  14. <div class="mar acrticle">cột 1</div>
  15. <div class="mar acrticle">cột 2</div>
  16. <div class="mar acrticle">cột 3</div>
  17. <div class="arcticle">cột 4</div>
  18.  
  19. </div>
  20. </div>
  21.  
  22. </body>
  23. </html>
  24.  
  25.  
  26.  
  27. *{
  28. box-sizing: border-box;
  29. }
  30. #container{
  31. display: block;
  32. width: 800px;
  33. height: auto;
  34. }
  35.  
  36. .content{
  37. display: flex;
  38. width: 800px;
  39. height: 400px;
  40. border: 2px solid blue;
  41. }
  42. .mar{
  43.  
  44. margin-right : 30px;
  45. }
  46. .article{
  47. width: 200px;
  48. height: 400px;
  49. background: #b1b1b1;
  50. border: 1px solid red;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement