在输入上覆盖难看的双色调边框样式

时间:2010-03-17 09:30:50

标签: css input border

我之前用输入完成了这个,为什么这不起作用?

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。

2 个答案:

答案 0 :(得分:6)

尝试:

border: 5px solid #dddddd;

“Solid”为您提供纯色,而“Inset”为您提供erm ... inset border。

答案 1 :(得分:1)

border-style:solid;