In IE8 it shows up as light gray and is barely readable. Chrome and Firefox are fine . How can i solve it ?
问问题
2110 次
3 回答
-1
尝试使用这个
input[type=text]:disabled
{
color:red
}
于 2013-09-17T07:32:41.403 回答
-1
由于 IE7 及更高版本支持[attr]
选择器,您可以执行此处回答的操作。
input[disabled]
{
color: red;
}
希望这会有所帮助。我无法测试它,因为我在 Windows 7 上并且只有 IE10。
于 2013-09-17T07:57:06.100 回答
-1
你可以使用jQuery
:
$('input[type=text]:disabled').css({
'color' : 'red'
});
或CSS
:
input[type=text]:disabled
{
color:red
}
我强烈推荐CSS
:D
于 2013-09-17T08:08:06.507 回答