top值,绝对定位
不是说只有在设置了绝对定位之后才能使用top吗,为什么好多并没有设置绝对定位的情况下也可以设置top值,而且还起作用
不是说只有在设置了绝对定位之后才能使用top吗,为什么好多并没有设置绝对定位的情况下也可以设置top值,而且还起作用
2016-11-10
<style type="text/css">
*{margin:0; padding:0; font-size:14px;}
a{color:#333;text-decoration:none}
ul{list-style:none; height:50px; border-bottom:5px solid #F60; padding-left:30px;}
ul li{float:left; margin-top:20px;}
a{display:block;height:30px;text-align:center; line-height:30px; width:120px; background-color:#ccc;}
a.on, a:hover{ color:#fff;background-color:#F60;height:40px; top:10px;line-height:40px;margin-top:-10px;}
</style>
举报