bootstrap4で、text-wrapをクラスに追加しても文字列の折り返しができません。
以下がコードなのですが、{{ $post->description }}のところの文字がはみ出てしまいます。
<ul class="list-unstyled"> <li class="pt-4 pb-4 bg-white rounded"> <div class="row mb-3"> <div class="col-sm-8 offset-sm-2"> <span class="mb-2">{{$post->user->name}}</span> </div> </div> <div class="row"> <div class="col-sm-8 offset-sm-2 text-wrap"> <p class="mb-3 font-weight-bold h3">{{$post->title}}</p> <div class="mb-3 font-weight-normal h4">{{$post->description}}</div> </div> </div> <div class="row mb-3 pb-3 border-bottom"> <div class="col-sm-8 offset-sm-2"> <img class="rounded img-fluid" width="500px" height="500px" src="{{ secure_asset('storage/' . $post->image) }}"> <p class="mb-3 mt-1">{{ $post->created_at }}</p> </div> </div> <div class="row mt-3 mb-3 pb-3 border-bottom"> <div class="col-sm-8 offset-sm-2 d-flex flex-row justify-content-between"> <p class="mb-3"> @include('favorites.favorites_button', ['post' => $post]) {{ $post->count_approvers() }} </p> <p class="mb-3"> @include('comments.comment_button', ['post' => $post]) {{ $post->count_commenters() }} </p> </div> </div> <div class="row pb-3 mb-3"> <div class="col-sm-6 offset-sm-3"> {!! link_to_route('posts.show', '詳細を見る', ['id' => $post->id], ['class' => 'btn btn-success btn-block']) !!} </div> </div> </li> </ul> {{ $posts->links('pagination::bootstrap-4') }} @endforeach @endif
CSSのword-wrapなども効かないです。
分かる人がいたら、是非よろしくお願いいたします。
画像はteratailの画像添付機能を利用してください。
回答2件
あなたの回答
tips
プレビュー