如何设置文本字段的样式以使其没有边框?

时间:2010-07-13 16:22:38

标签: html css

我有一个文本字段,我不想在它周围显示边框,因为它是一个只读文本字段。如何让它在没有边框且没有背景颜色的情况下显示?

5 个答案:

答案 0 :(得分:5)

因为您没有提供有关css版本的任何信息,所以这是一个例子:

<style type="text/css">
    input[type=text]
    {
        border: 0px;
        background: transparent;
    }
</style>
<input type="text" value="helllo" />

working demo

答案 1 :(得分:2)

#input { border:0; background:transparent; }

答案 2 :(得分:2)

#your_text_field {
  border-style: none;
  background-color: transparent;
}

编辑:哦,你知道吗,transparent实际上适用于IE6。我记得它不适用于某些属性,例如border

答案 3 :(得分:2)

<html>
<head>
<style type="text/css">
   input.asLabel
   {
      border: none;
      background: transparent;
   }
</style>
</head>
<body>
<form>
    <input class="asLabel" type="text" value="See, don't touch :)" disabled/>
</form>
</body>
</html>

答案 4 :(得分:1)

尝试了以下几点:

<input class="noBorderAndBackground" type="text" />

noBorderAndBackground{
   background-color:white;
   border-style:none;
}