前提・実現したいこと
haml,scssでレイアウトを作成しています。
https://gyazo.com/47b259188aebaa151d9d8938e0e9e6fe
画像が横に3つ並ぶと4つ目は下に並んでほしいのですが、なにかキーワードでいいので
教えて欲しいです。
発生している問題・エラーメッセージ
該当のソースコード
haml
1.Contents 2 - @photos.each do |photo| 3 .Content 4 .Content__name 5 = photo.name 6 .Content__image 7 = image_tag "#{photo.image}", height: '300', width: '400' 8 .Content__text 9 = photo.text
scss
1.Contents{ 2 height: calc(100vh - 90px); 3 background-color: #f5f5f3; 4 display: flex; 5 justify-content: space-between; 6 overflow: scroll; 7 Content{ 8 display: inline-block; 9 height: 300px; 10 width: 400px; 11 background: #fff; 12 13 &__name{ 14 15 } 16 &__text{ 17 18 } 19 &__image{ 20 } 21 } 22}
試したこと
インラインブロック要素などの言葉を調べながら検証中です。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/19 06:04