css 一些小笔记

针对IE6 的  

浮动  加 display:inline

子元素 position:relative;   overflow:hidden 失效 ,需在父元素上同样加上  position:relative;

模拟 max_height max_width  

 _expression((document.documentElement.clientWidth||document.body.clientWidth)<750?"":"750px");cursor: pointer;_height:expression((document.documentElement.clientHeight||document.body.clientHeight)<620?"":"620px");overflow:hidden;

居中  display:table  display:table-cell;  table-layout:fixed;

IE6 z-index  的bug  浮动 背景透明的 bug

原文地址:https://www.cnblogs.com/yxbs/p/2843104.html