1
以下是代碼,問題是它在桌面瀏覽器上正常工作,即禁用輸入的紅色,但在移動瀏覽器上,它不顯示紅色,而是顯示爲灰色,任何想法?如何更改/禁用在手機瀏覽器中輸入文字顏色?
<!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>
仍然無法工作.. –