我有以下 CSS 和 HTML。除了字体粗体之外,所有样式都被应用。是否可以以这种方式设置输入样式?
<span>
<input type="submit">
</span>
span input {
background: none;
border: none;
font-weight: bold;
text-decoration: underline;
}
我有以下 CSS 和 HTML。除了字体粗体之外,所有样式都被应用。是否可以以这种方式设置输入样式?
<span>
<input type="submit">
</span>
span input {
background: none;
border: none;
font-weight: bold;
text-decoration: underline;
}