当用户使用CSS单击文本框时,如何更改文本框的背景颜色

时间:2010-02-27 21:00:34

标签: html css stylesheet styling

问题在于主题。

3 个答案:

答案 0 :(得分:4)

您可以像这样使用CSS pseudo-class selectors

textarea:focus { background-color: red }

请注意doesn't work IE7 and lower

答案 1 :(得分:4)

<强> Demonstration :)

textarea:focus
{
   background-color: #00ff00;
}

答案 2 :(得分:3)

input[type='text']:focus {  
    background-color: #0066FF;  
}