如何制作按钮标签以进行扩展?

时间:2013-08-05 11:49:27

标签: html css button stylesheet styling

我在设置这段HTML代码时遇到了麻烦:

<div class="item-buttons">
    <a href="/some/url/with/value/1417">Sample button link</a>
    <button class="some-class some-status" value="1417">Button</button>
    <a href="/some/url/with/value/385">Other link</a>
</div>

根据下面的CSS规则,此代码将显示为带按钮的框。用<a>标记表示的按钮只是表现为普通链接,而<button>按钮的行为更复杂,需要在类属性和value属性中存储一些状态信息。这就是为什么我不为它们使用<a>标签。

这是应用于它们的CSS:

.item-buttons {
position: absolute;
top: 5px;
right: 0px;
width: 130px;
}

.item-buttons a, .item-buttons button {
background: #eee;
color: #333;
text-decoration: none;
text-align: center;
display: block;
padding: 6px 8px;
margin-bottom: 5px;
border: 1px solid #ccc;
font-size: 12px;

background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f5f5));
background: -moz-linear-gradient(top, #fff, #f5f5f5);
background: -o-linear-gradient(top, #fff, #f5f5f5);
background-color: #f5f5f5;

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

#.item-buttons a:hover, .item-buttons button:hover {
background: #a2e249;
color: #3d640e;
}

这是the whole example in JSFiddle。正如您所看到的,<a><button>按钮看起来非常相似,只有<button>按钮不会像<a>按钮那样展开。我希望他们都能扩大。我已经尝试了几个CSS规则无济于事。你能帮我解决这个问题并让<button>按钮展开吗?

2 个答案:

答案 0 :(得分:2)

如果将按钮类设置为此指令,它似乎可以正常工作。这是你的期望?

.some-class {
width: 100%;

}

答案 1 :(得分:2)

.item-buttons a, .item-buttons button{width:100%; box-sizing:border-box;}