更改单个表单元素的CSS

时间:2016-02-17 10:45:09

标签: html css forms

如您所见,this网站的左侧边栏上有一个搜索表单。

我想改变"只有"形成背景为白色,并使其看起来像this

我应该在自定义css部分添加什么代码?

感谢所有帮助。谢谢!

4 个答案:

答案 0 :(得分:0)

添加背景以进行聚焦

input:focus, select:focus, textarea:focus{background:#fff;}

删除此课程的背景

   .select2-container .select2-choice, input[type="date"], input[type="datetime-local"], input[type="email"], input[type="input"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], select, textarea
{
background-color: rgba(0, 0, 0, 0.02); /* Remove this background*/
}

答案 1 :(得分:0)

在您的css中添加以下代码

input[type="text"] {
 background-color: white;
}

答案 2 :(得分:0)

input.search.showtextback {
    background: #fff !important;
}

答案 3 :(得分:0)

只需添加以下css:

.search.showtextback {
    background: #ffffff;
}