标签:样式 透明 hidden 列表 scrollbar test res 内容 页面
img{display:block;}
input{vertical-align:middle;}
#test{width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.outer{width:200px;height:200px;background:#000;filter:alpha(opacity=20);opacity:.2;}
相同的是display:none与visibility:hidden都可以用来隐藏某个元素; 不同的是display:none在隐藏元素的时候,将其占位空间也去掉;而visibility:hidden只是隐藏了内容而已,其占位空间仍然保留。
li{vertical-align:top;}
input,button{overflow:visible;}
-webkit-transform-style:preserve-3d;或-webkit-backface-visibility:hidden;
#test{overflow:hidden;height:1px;font-size:0;line-height:0;}
html{ scrollbar-3dlight-color:#999; scrollbar-darkshadow-color:#999; scrollbar-highlight-color:#fff; scrollbar-shadow-color:#eee; scrollbar-arrow-color:#000; scrollbar-face-color:#ddd; scrollbar-track-color:#eee; scrollbar-base-color:#ddd; }
将原来设置在body上的滚动条颜色样式定义到html标签选择符上即可
#test{position:absolute;top:50%;left:50%;width:200px;height:200px;margin:-100px 0 0 -100px;}
#test{display:table-cell;*display:block;*position:relative;width:200px;height:200px;text-align:center;vertical-align:middle;}
#test p{*position:absolute;*top:50%;*left:50%;margin:0;}
#test p img{*position:relative;*top:-50%;*left:-50%;vertical-align:middle;}
body{line-height:n;}
标签:样式 透明 hidden 列表 scrollbar test res 内容 页面
原文地址:http://www.cnblogs.com/u-lhy/p/7062001.html