菜单

完美解决IE6不支持position:fixed的bug

先看下面一段代码: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>IE6 position:fixed bug</title> <style> *{padding:0;margin:0} p{height:2000px} #gs{border:1px solid #000;position:fixed;r...

CSS样式的filter(滤镜效果)对HTML作用

黑白照片 filter: gray; X光照片 filter: Xray; 风动模糊 filter: blur(add=true,direction=45,strength=30); 正弦波纹 filter: Wave(Add=0, Freq=60, LightStrength=1, Phase=0, Strength=3); 半透明效果 filter: Alpha(Opacity=50); 线型透明 filter: Alpha(Opacity=0, FinishOpacity=100, Style=1, StartX=0, StartY=0, FinishX=100, F...

overflow:hidden;使list-style-type无效

部分CSS新手编写网页li标签样式时,使用了list-style-type:decimal(或其它)的样式,但之前设置了样式不让li换行并隐藏溢出,使用了overflow:hidden;,发现list-style-type:decimal;设置的数字无法显示。 解决方法:给样式添加list-style-position:inside; 例子: .widget ul li { list-style-type:decimal; list-style-position:inside; white-space:nowrap; ...