我之前用输入完成了这个,为什么这不起作用?
http://euroworker.no/user/checkout
input.text, select, file, form.other
{
width: 15em;
font-size: 16px;
padding: 2px;
border-width:1px;
border-color:#dddddd;
border-style:inset;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
outline:none;
}
只想要一种颜色,#dddddd。
答案 0 :(得分:6)
尝试:
border: 5px solid #dddddd;
“Solid”为您提供纯色,而“Inset”为您提供erm ... inset border。
答案 1 :(得分:1)
border-style:solid;