基本的に、プロフィール画像にパディングを追加して、ブートストラップ ページで以下に示すように配置しようとしています。
現在の外観は次のとおりです。
そして、これが私がそれをどのように見せたいかです:
(ユーザー名はプロフィール画像の上にあり、コメントテキストは下にありますが、プロフィール画像と並んでいることに注意してください)
HTMLは次のとおりです:(私はBootstrapの初心者です)
<div class="row">
<div class="col-md-12">
<img src="~/Images/avatar.png" class="profile-picture" />
<label>Username - 1 month ago</label>
<p>
This is the text of the comment. This is the text of the comment. This is the text of the comment. This is the text of the comment. This is the text of the comment. This is the text of the comment. This is the text of the comment. This is the text of the comment.
</p>
</div>
</div>
プロフィール画像に少しパディングを追加する CSS は次のとおりです。
.profile-picture
{
padding-left: 10px;
padding-right: 10px;
}