###実現したいこと
マウスカーソルを重ねた際にボタンの色が変わるように設定したのですが、border-radiusが反映されません。
丸みを帯びるように変色させるにはどうすれば良いでしょうか。
*画像はボタンの一部をSSで抜粋しています
###各種コード
html
1<div class="picmenu"> 2 <ul id="table-ul"> 3 <li> 4 <a href=#"> 5 <img src="画像.png" alt="全て" class="icon-category"> 6 <p>全て</p> 7 </a> 8 </li> 9 </ul> 10</div>
css
1a:hover { 2 text-decoration: none; 3 transition: 1.0s; 4 color:white; 5} 6 7#table-ul { 8 border: 1px solid #dee2e6; 9 border-radius: 20px; 10 z-index: 1; 11 will-change: transform; 12 display: table; 13 table-layout: fixed; 14 text-align: center; 15 width: 100%; 16 box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px; 17 list-style-type: none; 18} 19 20#table-ul li { 21 border-right: 1px solid #dee2e6; 22 display: table-cell; 23 vertical-align: middle; 24 height: 40px; 25 padding:0; 26 margin:0; 27} 28 29#table-ul li a { 30 color: 1px solid #dee2e6; 31 display: block; 32 font-size: 10px; 33 margin: 0; 34 padding: 10px; 35 text-decoration: none; 36} 37 38#table-ul li a:hover { 39 background: rgb(14, 66, 238); 40 text-decoration: none; 41 transition: 0.3s; 42}
最低限のコードを記載したつもりですが、不足点ありましたらご指摘いただけますと幸いです。
###試したこと
table-ulにz-index:1;を設定してみましたが、特に変化がありませんでした。
お手数ですがアドバイス頂きたくよろしくお願い致します。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/26 00:40
2021/02/26 01:00 編集