【发布时间】:2014-01-24 09:26:44
【问题描述】:
以下是代码,问题是它在桌面浏览器上运行良好,即禁用输入的红色,但在移动浏览器上它不显示红色,而是显示灰色,有什么想法吗?
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>testing</title>
<style>
input[disabled] {
color: #f55;
font-weight: bold;
}
</style>
</head>
<body>
<section>
<form id="myForm" method="post" action="forms.php">
<input type="text" name="username" value="Username" disabled> <br>
<input type="password" name="password" placeholder="Password"> <br>
<input type="submit" name="submit"> <br>
</form>
</section>
</body>
</html>
【问题讨论】:
标签: html css forms mobile webforms