在Safari中将输入背景更改为透明

时间:2010-07-29 00:19:49

标签: input background transparent

当您使用Safari或任何其他浏览器在字段中单击时,是否可以消除输入和textareas中的白色背景(通过CSS)?这是我的链接:link text

干杯。

埃里克

1 个答案:

答案 0 :(得分:1)

您的:focus规则会覆盖它。制定另一条更具针对性的规则吗?

.postcard input:focus, textarea:focus {
    background:url("/img/pixel.gif") repeat scroll 0 0 transparent;
}
相关问题