プルダウンメニューを押下後に矢印と背景が変化し、
選択後はじめの矢印の向きと背景に戻したいです。
参考URLをもとに作成しましたが、動きをJSを使わずCSSで行いたいです。
参考:「標準的なプルダウンだが、選択メニューの形式をカスタマイズ。」
https://kodocode.net/design-css-selectlist/
擬似クラスを設ければうまくいくのでしょうか。
ご教授をお願いします。
HTML
1 <div class="result"> 2 <p>表示件数</p> 3 <select class="classic"> 4 <option>10</option> 5 <option>20</option> 6 <option>30</option> 7 </select> 8 </div>
css
1.result { 2 display: flex; 3 justify-content: flex-end; 4 } 5 6 .result p { 7 margin-top: 3.5%; 8 font-size: 11px; 9 } 10 11 .result select { 12 /* styling */ 13 background-color: white; 14 border: thin solid #C4C4C4; 15 border-radius: 4px; 16 display: inline-block; 17 font: inherit; 18 line-height: 1.5em; 19 padding: 0.5em 3.5em 0.5em 1em; 20 /* reset */ 21 margin: 0; 22 -webkit-box-sizing: border-box; 23 -moz-box-sizing: border-box; 24 box-sizing: border-box; 25 -webkit-appearance: none; 26 -moz-appearance: none; 27 } 28 /* arrows */ 29 30 .result select.classic { 31 background-image: linear-gradient(58deg, transparent 50%, #222 50%), linear-gradient(120deg, #222 50%, transparent 50%), linear-gradient(to right, #DEDEDE, #DEDEDE); 32 background-position: calc(100% - 19px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0; 33 background-size: 5px 5px, 5px 5px, 2.5em 3em; 34 background-repeat: no-repeat; 35 margin-bottom: 14px; 36 margin-left: 10px; 37 } 38 39 .result select.classic:focus { 40 background-image: linear-gradient(58deg, white 50%, transparent 50%), linear-gradient(120deg, transparent 50%, white 50%), linear-gradient(to right, gray, gray); 41 background-position: calc(100% - 16px) 1em, calc(100% - 20px) 1em, 100% 0; 42 background-size: 5px 5px, 5px 5px, 2.5em 2.5em; 43 background-repeat: no-repeat; 44 border-color: grey; 45 outline: 0; 46 }
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/25 15:00