当前位置:Gxlcms > html代码 > 向高手询问一个比较弱的css问题<a>为啥包不住<img>_html/css_WEB-ITnose

向高手询问一个比较弱的css问题<a>为啥包不住<img>_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:10人阅读

CSS HTML



/* CSS Document */body {margin:0; padding: 2px;}.containter{  margin:0; padding:0; border:solid #3399FF 1px; height:225px; width:auto;}.faceul{border: 0;}.faceul li{ list-style-type:none; float:left;}.faceul li a{height:223px;}.faceul li a img{border:none;}.faceul li a:hover{border:dashed 1px #F00;}

以上代码会出现下面效果:

想要的效果是当鼠标移到图片上时,图片的边框显示出来为红色虚线。 为啥实际效果包不住?


回复讨论(解决方案)

.faceul li a{height:223px; display:inline-block;
}

谢谢!果然实现效果了,能解释下这句代码的意思吗

谢谢!果然实现效果了,能解释下这句代码的意思吗
http://www.w3school.com.cn/css/pr_class_display.asp

人气教程排行