提交按钮不接受CSS样式

时间:2013-02-19 01:49:12

标签: css button

我的表单中有一个提交按钮,没有采用我为其设置的所有样式。我希望提交按钮看起来像“我有下一个按钮”,但它看起来不同

以下是一些相关的HTML:

<form>
    <a href="#step2" class="btn">Next Section >></a><br/>
    <input type="submit" name="submit" value="Submit Application" id="submit" />
</form>

这是CSS:

.btn, #submit {
    margin-top: 20px;
    background-color: #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius:6px;
    display: inline-block;
    color: #fff;
    font-family: 'Oswald';
    font-size: 20px;
    padding: 12px 24px;
    text-decoration: none;
    cursor: poiner;
    float: right;
}
.btn:hover, #submit:hover {
    cursor: pointer;
    box-shadow: 0px 0px 1px #777;
}

这是一个JS小提琴,它显示了输出差异:JS Fiddle

1 个答案:

答案 0 :(得分:5)

在提交按钮上使用此CSS。

#submit {
    border: none;
}