Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <figure class= "photo">
  2.         <img src="1.jpg"
  3.             alt="1">
  4.     <figcaption>
  5.         Pierwsze zdjęcia
  6.     </figcaption>
  7.     </figure>
  8.     <figure class= "photo">
  9.         <img src="1.jpg"
  10.             alt="1">
  11.             <figcaption>
  12.         Pierwsze zdjęcia
  13.     </figcaption>
  14.     </figure>
  15.    
  16.     <figure class= "photo">
  17.         <img src="2.jpg"
  18.             alt="1">
  19.             <figcaption>
  20.         Pierwsze zdjęcia
  21.     </figcaption>
  22.     </figure>
  23.    
  24.     <figure class= "photo">
  25.         <img src="2.jpg"
  26.             alt="1">
  27.     <figcaption>
  28.         Pierwsze zdjęcia
  29.     </figcaption>
  30.     </figure>
  31.  
  32.  
  33.  
  34.  
  35. .photo {
  36.   margin: 10px 0;
  37.   width: 320px;
  38.   background: white;
  39.   padding: 10px;
  40.  
  41.   border-radius: 5px;
  42.   border: 1px solid silver;
  43.   box-sizing: border-box;
  44.  
  45.   display: flex;
  46.   justify-content: space-around;
  47.   flex-wrap: wrap;
  48.  
  49.  
  50. }
  51.  
  52. .photo img {
  53.   flex-basis: 100%;
  54.   width: 300px;
  55.  
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement