12 2015 档案
摘要:.selector{ position: fixed; width: 100%; height: 100%; background-image: url(path); background-repeat: no-repeat; background-position: center center; ...
阅读全文
摘要:function fn01() { $('selector').each(function(index) { if (index % 3 == 0) { $(this)........ } );} 只要该元素的ind...
阅读全文
摘要:原文地址:http://www.cr173.com/html/17948_1.html示例: margin-right: 5px; margin-right: 2px\9; 注意要写在分号的前面。CSS hack由于不同的浏览器,比如Internet Explorer 6,Internet Expl...
阅读全文
摘要:原文地址:http://www.cnblogs.com/webblog/archive/2009/07/07/1518274.html最近在研究jQuery的选择器,大家知道jQuery的选择器和css的选择器非常相似,所以整理一下css选择器;css1-css3提供非常丰富的选择器,但是由于某些选...
阅读全文
摘要:@charset "utf-8";/* Reset Definitions*/body, div, p, a, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, input, textarea, select, button, th, td ...
阅读全文
摘要:1 @charset "utf-8";2 @import url("global.css");3 @import url("common.css");4 5 /* 头部 */6 @import url("header.css");7 8 /* 底部 */9 @import url("footer.c...
阅读全文
摘要:在head中插入如下标签: 。然后把图标命名为favicon.ico,放在根目录下即可。
阅读全文
摘要:1、++i和i++,在单独使用时,就是i=i+1。 2、a=++i,相当于i=i+1;a=i;(先i=i+1,再使用i的值)。也可以写成i++;a=i 3、a=i++,相当于a=i;i=i+1;(先使用i的值,再i=i+1)。可以写成a=i;i++。
阅读全文

浙公网安备 33010602011771号