我有以下CSS和HTML。所有样式都应用于font-weight粗体。是否可以通过这种方式设置输入样式?
<span>
<input type="submit">
</span>
span input {
background: none;
border: none;
font-weight: bold;
text-decoration: underline;
}
答案 0 :(得分:0)
这是一个应该有效的样式代码。
<head>
<style type="text/css">
.inputClass{
font-weight: bold;
}
</style>
</head>
<body>
<form method="post.php" action="POST">
<input id="input" class="inputClass">
</form>
</body>
这将代替原始代码,因为它包含在<style>
标记中。
请告诉我这是否适合您或您正在寻找的解决方案。