我发现
this article,我决定我喜欢他们的样式链接和按钮的方式。
所以我从文章中拿出了CSS …
所以我从文章中拿出了CSS …
.buttons a,.buttons button{ display:block; float:left; margin:0 7px 0 0; background-color:#f5f5f5; border:1px solid #dedede; border-top:1px solid #eee; border-left:1px solid #eee; font-family:"Lucida Grande",Tahoma,Arial,Verdana,sans-serif; font-size:100%; line-height:130%; text-decoration:none; font-weight:bold; color:#565656; cursor:pointer; padding:5px 10px 6px 7px; /* Links */ } .buttons button{ width:auto; overflow:visible; padding:4px 10px 3px 7px; /* IE6 */ } .buttons button[type]{ padding:5px 10px 5px 7px; /* Firefox */ line-height:17px; /* Safari */ } *:first-child+html button[type]{ padding:4px 10px 3px 7px; /* IE7 */ } .buttons button img,.buttons a img{ margin:0 3px -3px 0 !important; padding:0; border:none; width:16px; height:16px; }
然后我有几个按钮,我想要这样使用…
<div class="buttons"> <a href="/password/reset/"><img src="pict1.png" class="positive" alt=""/>Button 1</a> <a href="/password/reset/"><img src="pict2.png" alt=""/>Button 2</a> <a href="/password/reset/"><img src="pict3.png" class="negative" alt=""/>Button 3</a> </div>
见这个例子:http://reljac.com/csstest.php
但是这一排按钮可能需要对齐中心,而不是全部对齐或左右。如果我将CSS更改为…
.buttons a,.buttons button{ /*display:block; float:left;*/ margin:0 7px 0 0;
当有图像时,按钮不再正确显示,具体在IE 6,7和8。
见这个例子:http://reljac.com/csstest_wo.php
我可以将浮点数更改为右边的按钮,但是我无法弄清楚如何使它们居中(如< td>< / td>)。
所以我不想使用这种风格,但如果需要,我也需要能够对齐按钮。