如何样式下拉列表?
这个问题在这里已经有了答案:
看看这个 - http://bavotasan.com/2011/style-select-box-using-only-css/
HTML
<div class="styled-select">
<select>
<option>Here is the first option</option>
<option>The second option</option>
</select>
</div>
CSS
.styled-select select {
background: transparent;
width: 268px;
padding: 5px;
font-size: 16px;
line-height: 1;
border: 0;
border-radius: 0;
height: 34px;
-webkit-appearance: none;
}
为了更详细的样式,你需要使用JavaScript - 像这样http://tympanus.net/codrops/2012/10/04/custom-drop-down-list-styling/
如果你的意思是“我如何设计一个表单元素的可选择选项?”,那么你将会很难。 你不能使用纯CSS来实现。 你可以创建一个“