CSS学习笔记

1.在CSS中加入事件的两种方式//此方式违反yahoo网页开发准则,不建议采用,且只有IE支持。
2009-12-10
.item{
        event:e­xpression(
                onmouseover=function(){
                },
                onmouseout=function(){
                }
        )
} 

.item{
        onmouseover: expression(onmouseover=function (){
        });
} 


2.Label for 属性
for属性值为所需要关联的表单元素ID.既点击label等同于点击他所关联的元素.
<label for="name">Name</label>
<input type="text" name="name" id="name"/>

你可能感兴趣的:(css,IE,Yahoo)