2016年10月19日星期三

firebug color

Format        Description
Bold Black    Objects
Black         DOM objects
get in gray   "Getter" functions
Bold green    User functions
Green         DOM functions
Bold Red      Constructor functions 
 
 http://getfirebug.com/wiki/index.php/DOM_Panel


Bold Black是Object,Class的instance了
Bold Red还是Class

2016年10月18日星期二

nth-of-type的选择器和class谁优先?

今天写一个东西,这样子的
.grid-autotrail  tbody tr td.range:nth-of-type(3) {
border-right: 1px red dotted;
}

本来想选出tr里面是td.range的第三个,结果选出来的是
tr里面第三个td,并且有range的

也就是nth-of-type这样的,不受前面class的影响。