可能重複:
How to make IE support min-width/max-width CSS properties?如何讓IE方面的最大和最小寬度
我已經有很列表主導航網站(左浮動)。
li元素需要有min和max寬度。 這個CSS當然適用於所有優秀的瀏覽器。 但IE(9)不響應它。
ul.dropdown li {
line-height: normal;
text-align: center;
max-width: 145px;
min-width: 88px;
min-height: 30px;
}
如果我在一種情況下使用此代碼,例如最大寬度IE尊重它。 http://perishablepress.com/maximum-and-minimum-height-and-width-in-internet-explorer/
但是當然我不能在最小寬度中使用相同的值。
我需要一個解決方案,即IE尊重最大和最小寬度。
有沒有解決方案?
謝謝!
編輯:我忘了說我已經加入
<!DOCTYPE html
>
;)
不,這不是因爲我已經添加了doctype,即不尊重它,因爲如果我使用一個條件(即最大寬度),最小寬度不受尊重。 – LexLusa