站内搜索:
首页 >> 前端 >> 内容
hover

时间:2016/12/19 9:20:54

当鼠标移动到元素上时,变变颜色什么的,可以用hover,hover可以和任何元素搭配,只是通常和a:hover,但是刚刚用到了ul li:hover{

#left ul li{border-bottom:1px solid #999; background-image:url(images/bullet-green.gif); background-repeat:no-repeat;width:150px; margin-left:0px; text-align:center; }
#left a{color:black; font-weight: bold;}
#left ul li:hover{background-image: url(images/bullet-red.gif);background-repeat: no-repeat;}

  • 上一篇:用Flask来写个轻博客(26)—使用Flask-Celery-Helper实现异步任务
  • 下一篇:react input 获取/失去焦点
  • 返回顶部