Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="style.css" type="text/css" />
  8. <title>Document</title>
  9. <style type="text/css">
  10. .category-block {
  11. max-width: 768px;
  12. margin:0 auto;
  13. overflow:hidden;
  14. }
  15. .flex-block {
  16. display:flex;
  17. flex-direction: row;
  18. align-items: stretch;
  19. }
  20. .flex-block img {
  21. width: 100%;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26.  
  27. <div class="category-block">
  28. <div class="flex-block">
  29. <div class="flex-block__area">
  30. <img src="1-img.jpg"></img>
  31. </div>
  32. <div class="flex-block__area">
  33. <img src="2-img.jpg"></img>
  34. </div>
  35. <div class="flex-block__area">
  36. <img src="3-img.jpg"></img>
  37. </div>
  38. </div>
  39. </div>
  40.  
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement