前提・実現したいこと
railsで画像投稿アプリを作成しており、投稿した画像が並ぶトップページに背景画像を表示したい。
該当のソースコード
CSS
1/* 投稿内容表示ページ */ 2.main_contents { 3 background-image: url("/images/top_view.jpg"); 4} 5 6.post_contents { 7 background-color: rgb(248, 227, 247); 8 display: flex; 9 flex-direction: column; 10 align-items: center; 11 padding: 10vh 0; 12} 13 14.post_contents>.title { 15 font-size: 5vh; 16 line-height: 1.4; 17 font-weight: bold; 18} 19 20.post_lists { 21 width: 100vw; 22 display: flex; 23 flex-wrap: wrap; 24 justify-content: center; 25} 26 27.post_lists>.list { 28 width: 37vh; 29 padding: 1vw; 30 background-color: rgb(248, 227, 247); 31} 32 33.post_img_content { 34 position: relative; 35} 36 37.post_img { 38 width: 33vh; 39 height: 33vh; 40} 41 42.post_info { 43 background: rgb(248, 227, 247); 44 color: black; 45 padding: 1vw; 46} 47 48.post_date { 49 font-size: 2.5vh; 50} 51 52.post_title { 53 font-size: 2.5vh; 54} 55 56/* 投稿内容表示ページ */``` 57 58```HTML 59<%= render "shared/header" %> 60<div class="main_contents"> 61 <div class="post_contents"> 62 <h2 class="title">新規投稿</h2> 63 <ul class="post_lists"> 64 <% @posts.each do |post| %> 65 <li class="list"> 66 <%= link_to post_path(post.id) do %> 67 <div class="post_img_content"> 68 <%= image_tag post.images[0], class: "post_img" if post.images.attached? %> 69 </div> 70 <div class="post_info"> 71 <h3 class="post_date"> 72 <%= post.date %> 73 </h3> 74 <h3 class="post_title"> 75 <%= post.title %> 76 </h3> 77 </div> 78 <% end %> 79 </li> 80 <% end %> 81 </ul> 82 </div> 83</div>
試したこと
表記している通りbackground-imageをCSSで使用したり、position: relative;を使用したりと
色々試してみました。
background-imageが最も適していると考えましたが画像が表示されません。
補足情報(FW/ツールのバージョンなど)
画像はしっかりとimagesディレクトリに格納されています。
あなたの回答
tips
プレビュー