前端之家收集整理的这篇文章主要介绍了
用jquery模仿的a的title属性的例子,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
内容重叠问题
}
.list li {
list-style:none;
width:100px;
height:24px;
line-height:24px;
margin-right:10px;
float:left;
}
.list li a {
text-decoration:none;
color:#333;
display:block;
}
.show {
position:absolute;
width:100px;
background:#FFFFE1;
border:1px solid #ffcc01;
padding:6px;
display:none;
z-index:5;
margin-top:10px; //代替top
margin-left:60px; //代替left
}
.show p {
height:18px;
line-height:18px;
}
.list li a:hover {
text-decoration:underline;
color:#FF0000;
}
SEOver",function(){
$(this).find(".show").show();
}).bind("mou
SEOut",function(){
$(this).find(".show").hide();
})
})