2012-5-3 8:29 Thursday  
1、终极方法:条件注释

<!--[if lte IE 6]> 这段文字仅显示在 IE6及IE6以下版本。 <![endif]-->

<!--[if gte IE 6]> 这段文字仅显示在 IE6及IE6以上版本。 <![endif]-->

<!--[if gt IE 6]> 这段文字仅显示在 IE6以上版本(不包含IE6)。 <...

阅读全文>>

2012-3-18 11:33 Sunday  

想要 <div class="fdiv">我要浮动并居中</div>浮动并居中的方法其实很简单,代码如下:

.fdiv{
width: 300px;
height: 200px;
position: absolute;
background: #fff;
border: 1px solid #bbb;
left: 50%;
top: 50%;
margin...

阅读全文>>