摘要:
1、border border-color、border-image、border-radius、box-shaow 2、background background-size、background-orgin、background-clip 3、文字效果 text-shadow、word-wrap 阅读全文
摘要:
BFC(块格式化上下文 (Block Formatting Context))是一个独立的布局环境,其中的元素布局是不受外界的影响,并且在一个BFC中,块盒与行盒(行盒由一行中所有的内联元素所组成)都会垂直的沿着其父元素的边框排列。 外边的元素布局不影响里面的,里面的元素也不受外边的影响 BFC的原 阅读全文
摘要:
IE6双边距 行内属性设置了块级属性(display: block;)后,会产生双倍边距。 解决方案是在添加一个 display: inline; 或者 display: table; 双倍margin 浮动元素设置了margin在IE6下会产生双倍margin。 只要给浮动元素设置 display 阅读全文