Change input background to transparent in Safari
Is it possible to eliminate the white background (v开发者_StackOverflow中文版ia CSS) in the input and textareas when you click in the field using Safari or any other browser? Here is my link: link text
Cheers.
Erik
Your :focus
rule overrides it. Make another rule that's more specific to counter that?
.postcard input:focus, textarea:focus {
background:url("/img/pixel.gif") repeat scroll 0 0 transparent;
}
精彩评论