样式中少用的格式
样式篇:
h3{font:bold 14px/19px arial;color:#000;}
==
h3{
font-weight: bold;//字体粗细
font-size:14px;
line-height:19px;//行距
}
---------------------------------------------------------------------------
.rtc-legend {cursor:pointer; cursor:hand;}
IE5 IE6 IE7 Firefox
cursor:pointer × √ √ √
cursor:hand √ √ √ ×
cursor:pointer × √ √ √
cursor:hand √ √ √ ×
是为了让IE5也支持手型
-----------------------------------------------------------------------------
.rtc-legend {margin:0 -1px;width:200px;_position:relative;}
是为提供在IE6下面的调整(IE6支持“_”开头的样式属性)
-------------------------------------------------------------------------------