我发现这篇文章,我决定我喜欢他们设计链接和按钮的方式.所以我从文章中获取了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; }
然后,我想连续使用几个按钮,就像这样......
请参阅此示例: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
我可以将浮动更改为右边以使按钮对齐,但我无法弄清楚如何使它们居中(如a
).
所以缺点是我想要使用它的样式,但我还需要能够在必要时对按钮进行居中对齐.
尝试将此添加到CSS:
.buttons { text-align:center; margin: 0px auto 0px auto; }
自动使每边的边距相等.text-align是旧版浏览器的一个特色.
在名为buttonwrapper的按钮周围添加一个额外的div.然后应用这个CSS
.buttonwrapper { position:relative; float:left; left:50%; } .buttons { position:relative; float:left; left:-50%; }
从http://www.pmob.co.uk/temp/centred-float4.htm采取(但未测试)的方法