bootstrapのcardコンポーネントを使用して画像のスタイルを整えようとしています。
cardのスタイリングが適応されていればcardにキャプション画像がきれいに収まるはずですが、現在下の画像のようにはみ出てしまっている状態です。
何かご指摘いただければと思います。
参考: https://getbootstrap.com/docs/4.5/components/card/
<% @communities.each do |community| %> <%= link_to community_path(community) do %> <div class="card" style="width: 15rem;"> <div class="card-image"> <%= attachment_image_tag community, :intro_image, fallback:"no-image.jpg"; %> </div> <div class="card-body"> <%= community.title %> </div> </div> <%end%> <%end%>
> うまくいきません。
とは具体的にどのようにうまくいかないのでしょうか?
回答1件
あなたの回答
tips
プレビュー