0

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

以下是一些相关的 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 Fiddle:JS Fiddle

4

1 回答 1

5

在提交按钮上使用此 CSS。

#submit {
    border: none;
}
于 2013-02-19T01:54:49.357 回答