【記載箇所誤ったため修正】
下記コードで、半円の中の要素が上下左右ちゃんと真ん中にきません・・・
なぜ上側にくっついてしますのかわかりません。
HTML
1 <div class="circle-wrapper"> 2 <div class="circle"> 3 <a href="#"> 4 <svg width="1.5em" height="1.5em" viewBox="0 0 16 16" class="bi bi-chevron-up" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> 5 <path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg> 6 </a> 7 </div> 8 </div>
CSS
1 2.circle { 3 width:50px; 4 height:25px; 5 border-radius:25px 25px 0 0; 6 background-color:#9CB7BD; 7 margin: 0 auto; 8 display: flex; 9 justify-content: center; 10 align-items: center; 11} 12 13.circle a{ 14 color: white; 15} 16 17
回答2件
あなたの回答
tips
プレビュー