随笔分类 - 软件知识
IE 背景闪烁 ( Background Flicker )
摘要:1. Css处理:html { filter: expression(document.execCommand("BackgroundImageCache", false, true)); }( 缺点:expression 影响性能 )2. JavaScript处理:try{ document.execCommand('BackgroundImageCache', false, true);} catch(e){}3. 针对IE6比较完美的Css方案:html { zoom:expression(function(ele){ document.execCom
阅读全文
网页背景音乐设置
摘要:一、添加背景音乐时,一般会用到两种标签:1、<bgsound>2、<embed>二、一般用法 :<bgsound src="音频源" autostart="true" loop="false" /><embed src="音频源" autostart="true" loop="false" />三、标签属性 :1、autostart 当为 true 时 是自动播放模式 。反之, 当为false时 为一开始不进行自动播放(默认为f
阅读全文
CSS2简写和常用css总结笔记
摘要:外边距 margin:1px 1px 1px 1px 简写margin:1px; maigin:1px 2px 1px 2px 简写 margin:1px 2px; margin:1px 2px 3px 2px 简写 margin:1px 2px 3px;上边距 margin-top:1px下边距 margin-bottom:1px右边距 margin-right:1px左边距 margin-left:1px居中设置 margin:0 auto;内边距 padding同上外边距边框 简写 border:1px solid #120 类似border-top border-right borde
阅读全文
编写高质量的CSS代码,规范建议
摘要:id和class的命名在保持语义性的同时尽可能的短.不推荐的写法:#navigation {} .atr {}推荐的写法 : #nav {} .author {}可以缩写单词,但缩写后务必能让人明白其含义。比如author缩写成atr就非常费解。参考链接: http://www.36ria.com/5249属性书写顺序,首先定义显示属性推荐的写法 :.selector{float:left;width:300px;height:200px; font-size:14px;color:#f36;}不推荐的写法:.selector{font-size:14px; color:#f36; float
阅读全文
DIV+CSS 三栏布局
摘要:1.要求:如上图中的,三栏目布局,中间的MAIN是自适应浏览器的宽度,左LEFT固定宽200PX,右RIGHT固定宽200PX;.right,.left{height:300px;width:200px;}.right{ float:right;background:#000000;}.left{ float:left;background:#009933;}.main{background:#F60; height:300px;} <div class="right">RIGHT</div> <div class="left&quo
阅读全文
浙公网安备 33010602011771号