この画像のようにセレクトボタン????????の書き方を教えていただきたいです。
■ブラウザ
google cloome
html
1<div class="select"> 2 <select class="select_city"> 3 <option>Select a city</option> 4 </select> 5 <p class="select_create">Create an experience</p> 6 </div>
css
1.select { 2 text-align: center; 3 margin: 24px auto; 4 width: 474px; 5 font-size: 2.2rem; 6} 7 8.select_city { 9 border: 1px solid #88939e; 10 border-radius: 30px 30px 0px 0px; 11 padding: 17px 41px; 12 width: 474px; 13 font-size: 2.2rem; 14 color: #88939e; 15} 16 17.select_create { 18 background-color: #fd5c74; 19 border-radius: 0px 0px 30px 30px; 20 display: block; 21 padding: 17px 134px; 22 color: #fff; 23}
現状、このようになってしまっていて困っています。
どなたかお願いします。
ここまでできました。
矢印に関しても解決しました。
不明点
現状、矢印を消しただけでコードがうまく反映されません。
自分のコード何か間違っているところはありますか??
このコードでできると思ったんですが、できなかったです。
HTML
1<div class="choice_select"> 2 <select class="choice_select_common choice_select_language"> 3 <option>Engilish</option> 4 <option>Japan</option> 5 </select> 6 <select class="choice_select_common choice_select_country"> 7 <option>EUR</option> 8 <option>JPN</option> 9 </select> 10</div>
CSS
1.choice { 2 display: flex; 3 justify-content: center; 4 margin: 141px 122px 0px; 5 font-size: 2.2rem; 6 justify-content: space-between; 7} 8 9.choice_select_common { 10 position: relative; 11} 12 13.choice_select_common::before,.choice_select_common::after { 14 content: ''; 15 width: 0; 16 height: 0; 17 z-index: 1; /* select画面より前に矢印を配置できるように */ 18 position: absolute; /* 絶対位置への配置 */ 19 box-sizing: content-box; 20 border: 10px solid transparent; 21 right: 10px; 22} 23 24.choice_select_common::before { 25 border-bottom: 10px solid #88939e; 26 top: 10px; 27} 28.choice_select_common::after { 29 border-top: 10px solid #88939e; 30 top: 40px; 31} 32
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/03 04:43
2020/06/05 07:32 編集