<select class="styled-select" name="color">
<option value="">好きな色を選択</option>
<option value="red">赤</option>
<option value="blue">青</option>
<option value="yellow">黄</option>
</select>
<!-- Code Kitchenのバナー -->
<a href="https://code-kitchen.dev/" style="display: table; position: fixed; bottom: 2px; right: 5px;" target="_blank"><img src="https://res.cloudinary.com/code-kitchen/image/upload/v1582096487/static/banner.svg" alt="Code Kitchen" width="110" height="30"></a>
.styled-select {
/* 👇デフォルトのスタイルを解除 */
appearance: none;
appearance: none;
appearance: none;
/* 👇スタイル */
display: inline-block;
width: 100%; /* 幅 */
max-width: 250px; /* 最大幅 */
margin: 1em 0; /* 前後の余白 */
padding: 0.6em 1.5em 0.6em 0.5em; /* 文字周りの余白 */
cursor: pointer; /* カーソルを指に */
line-height: 1.4; /* 行高 */
font-size: 0.95em; /* フォントサイズ */
font-weight: 700; /* 太字に */
color: #333; /* 文字色 */
border-radius: 4px; /* 角丸 */
background-color: #f7f9fb; /* 背景色 */
border: solid 1px #e1e8ef; /* 枠線 */
box-shadow: 0 3px 3px -2px rgba(3, 29, 41, 0.15); /* 影 */
/* 👇三角マークを作る */
background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%), linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
background-size: 5px 5px, 5px 5px;
background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
background-repeat: no-repeat;
}
/* フォーカス時 */
.styled-select:focus {
outline: 0;
border-color: #b0c5ff; /* 枠線色を変更 */
}
/* IEでデフォルトの矢印を消す */
.styled-select::expand {
display: none;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.