2012-08-28 155 views

回答

1

刪除寬度從您的.bottom DIV。像這樣寫:

.bottom{ 
    position: absolute; 
    bottom: 0px; 
    background-color: red; 
    left: 10px; 
    right:10px; 
    text-align: center; 
} 

檢查:Fiddle

1

也許嘗試類似的東西http://jsfiddle.net/4ugxk/24/它是否可以

.bottom{ 
    position: absolute; 
    bottom: 0; 
    left:0; right:0; 
    margin-left:10px; 
    margin-right:10px; 
} 
0

你可以把一個包裹跨度(或DIV)輸入元件周圍,用它來應用你想要的邊距。您需要從標準輸入框(填充,邊框等)中刪除默認樣式,並按照您希望輸入顯示的方式對此包裝元素進行樣式設置。

請參見:http://jsfiddle.net/4ugxk/43/