使用VS Code Live Server扩展和Chrome。出于某种原因,我可以更改文本框的所有其他属性,但不能更改文本颜色——为什么?
文本框.html:
<!DOCTYPE html>
<html>
<head>
<title>Search Google</title>
<link rel="stylesheet" href="textbox.css">
</head>
<body>
<input id="search-box" type="text" placeholder="Search Google or type a URL">
</body>
</html>
文本框.css:
#search-box {
font-family: Arial;
font-size: 16px;
background-color: red;
color: blue;
}