2013-03-28 54 views
0

我正在嘗試設置樣式按鈕,以便文本左/右邊距比默認樣式小得多。如何使用CSS控制按鈕頁邊距(IE8兼容)

例子:

enter image description here

我如何能做到這一點使用CSS是與IE8兼容?

我試過,但沒有工作(換行只對降價的緣故):

<button style="font-size=11px; 
margin-right:1px;padding-right:1px;margin-left:1px;padding-left:1px;"> 
Copy parameters to another fund</button> 

我知道我可以通過設置width屬性調整這一點,但我不得不爲每個不可擴展的不同文本設置個人。

回答

2

確保包含文檔類型。這適用於我:

<!doctype html> 
<body> 
<button style="font-size=11px; 
     margin-right:1px;padding-right:1px;margin-left:1px;padding-left:1px;"> 
     Copy parameters to another fund 
    </button> 
</body> 

其實,你不需要邊距,填充會做。

+0

就是這樣! – DVK