我尝试使用.input{}来样式化我代码中的输入,但它不起作用。我想使输入元素不那么丑陋,甚至按钮提交太多。另外,我试图把代码本身放在这里,但也许我不知道如何正确识别它:(
<input type="text" id="login"/>
vohkndzv1#
输入没有“input”类,所以在这种情况下,你不会在它前面加上“.”。以下是几种写出来的方法,取决于你想如何定位它:input{styling: here;}input[type = "text"]{styling: here;}input#login{styling: here;}我希望你觉得这有帮助
input{styling: here;}
input[type = "text"]{styling: here;}
input#login{styling: here;}
1条答案
按热度按时间vohkndzv1#
输入没有“input”类,所以在这种情况下,你不会在它前面加上“.”。以下是几种写出来的方法,取决于你想如何定位它:
input{styling: here;}
input[type = "text"]{styling: here;}
input#login{styling: here;}
我希望你觉得这有帮助