現在記事投稿後の記事を最初の4つの記事は横並びにして5つ目の記事は4つ目の記事の下にに順々追加していくようにしたいのですが、どのようにすればよろしいでしょうか?
記事が横に4、縦に3列を作りたいです。
tweets_controller
rails
1 2 def index 3 @tweets = Tweet.includes(:user) 4 end
haml
1.Sign-in 2 投稿一覧 3 .Top 4 - @tweets.each do |tweet| 5 .article 6 = link_to tweet_path(tweet.id) ,class: "article-link" do 7 = image_tag tweet.image.url,class: "article-uplord-image" 8 %br/ 9 .article-title 10 = tweet.title
css
1.Sign-in{ 2 margin: 0px 80px 0px 80px; 3 background-color: white; 4 text-align: center; 5 font-size: 18px; 6 padding-top: 30px; 7} 8.Top{ 9 padding-top: 30px; 10 margin: 0px 30px 0px 30px; 11 display: flex; 12 justify-content: center; 13} 14.article{ 15 width: 200px; 16 height: 200px; 17 margin: 0px 10px 0px 10px; 18} 19 20.article-link{ 21 text-decoration: none; 22} 23.article-uplord-image{ 24 width: 200px; 25 height: 150px; 26} 27.article-title{ 28 text-align: center; 29 30} 31 32.view{ 33 margin: 0px 80px 0px 80px; 34 background-color: white; 35}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。