在下面的示例中,button
元素显示为btn-secondary
,但a
元素不是,与this示例相反,btn-secondary
类被分配给一个a
元素并显示出正确的效果。我希望a
也显示为次要按钮。
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<form class="form-signin" method="post">
<fieldset class="form-inline">
<button type="submit" class="btn btn-primary">Login</button>
<button type="button" class="btn btn-secondary" href="/register">Register</button>
<a type="button" class="btn btn-secondary" href="/register">Register</a>
<a href="#" class="btn btn-secondary" role="button">Link</a>
</fieldset>
</form>
最佳答案
.btn-secondary
不在引导程序3中。您需要包含引导4 CSS。
关于html - HTML Bootstrap表单<a>元素未显示为btn-secondary,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34440725/