######分からないこと
CSSでトリミングした画像を親要素の中央に配置したいのですが上手くいきません。
中央に配置する方法を教えてください。
#####試したこと
CSSのimgタグで以下のコードを入力しました。
text-align:center;
display:flex;
justify-content:center;
html
1<div class="main-right-wrapper"> 2 <img src="images/ranking1.jpg" alt="プロフィール画像"> 3 <h2>name name</h2> 4 <p>テキストテキストテキストテキストテキストテキスト</p> 5 </div>
css
1 2.main-right-wrapper{ 3 width:35%; 4 float:right; 5} 6 7.main-right-wrapper img{ 8 width:100px; 9 height:100px; 10 border-radius: 50%; 11 margin-top:100px; 12}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/03 10:30