0

我有以下 CSS 和 HTML。除了字体粗体之外,所有样式都被应用。是否可以以这种方式设置输入样式?

<span>
  <input type="submit">
</span>

span input {
    background: none;
    border: none;
    font-weight: bold;
    text-decoration: underline;
}
4

1 回答 1

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>标签中。

让我知道这是否适合您或者您正在寻找的解决方案。

于 2013-05-17T15:41:25.743 回答