这是一个示例
<html>
<head>
<style>
.test > input { //this is wrong.
color:red;
}
</style>
</head>
<body>
<div class="test">
<div>
<input></input>
</div>
</div>
</body>
</html>
我想要做的是将样式应用于输入元素。如何选择输入元素。借助 div 的 CSS 样式名称。