我想製作一個簡單的面板,其中水平放置按鈕並將其對齊到右側。願意將其調整到左邊,我可以很容易地做到這一點像:如何將水平按鈕對齊到右側?
.button {
float:left;
background-color: #55cc66;
margin-right: 50px;
padding: 5px;
}
//......
<div id="switcher">
<h3>Style Switcher</h3>
<div class="button selected" id="switcher-default">
Default
</div>
<div class="button" id="switcher-narrow">
Narrow Column
</div>
<div class="button" id="switcher-large">
Large Print
</div>
</div>
但是,當我做同樣的float:right
它顯然它對齊到右側,但倒序。我也試過text-align: right
,position: absolute; right:150;
和position: fixed; right:150;
。最後兩個對齊右側,但與'按鈕'重疊。
那我該怎麼做呢?
謝謝。 +1對於jsfiddle。真的很棒的網站:) – Patryk 2012-03-03 23:31:12