father {
width: 100%;
min-width: sonWidth;
}
複製代碼
解決方法:javascript
father{
font-size: 0;
}
或者
<div>**</div><div>
***</div> (標籤之間不要有換行或者空格)複製代碼
解決:html
{ _zoom:1; *display:inline; }複製代碼
{ text-justify: inter-ideograph; } 複製代碼
解決:html5
內部元素遇到float或者display: block後就不繼承外部這個縮進的屬性了,因此只要給圖片加上float或者display: block的 這個CSS 屬性後,圖片所繼承的縮進會自動失效。
java
{ font-size: 0; text-indent:-9999px; } img{ display:block; } 複製代碼
很差意思這個我好像沒解決複製代碼
解決:
bash
兩欄狀況下分別給元素浮動 定寬ide
div1 {float: left; width:500px; }
div2 {float: right; width:500px;}複製代碼
解決:
ui
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5shiv.js"></script>
<![endif]-->複製代碼
本地沒有文件的話,能夠應用開源社區的文件spa
<!--[if lt IE 9]>
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
<![endif]-->複製代碼
解決:
code
div { min-height:100px; height:100px; height:auto !important; }複製代碼