4-7编程,请老师看一下。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>display属性</title> <style type="text/css"> /*样式补充*/ *{padding:0px; margin:0px;} .big{width:100px; background-color:#f2f4f6; margin:0 auto;} h3{border:1px #ececec solid; text-align:center; width:100%; color:black; text-decoration:none; } .elec,.wash,.clothes{display:none; list-style: none; text-align:center; color:black; } a:hover .elec{display:block;} a:hover .wash{display:block;} a:hover .clothes{display:block;} </style> </head> <body> <div class="big"> <div class="div1"> <a href="#"> <h3>家电</h3> <ul class="elec"> <li>冰箱</li> <li>洗衣机</li> <li>空调</li> </ul></a> </div> <div class="div2"> <a href="#"> <h3>洗护</h3> <ul class="wash"> <li>洗衣液</li> <li>消毒液</li> <li>柔顺剂</li> </ul></a> </div> <div class="div3"> <a href="#"> <h3>衣物</h3> <ul class="clothes"> <li>衬衫</li> <li>裤子</li> <li>卫衣</li> </ul></a> </div> </div> </body> </html>
1
收起
正在回答
2回答
同学,你好。去掉下划线可以用这个属性:
在这儿你也可以不用a标签,用span标签就不用去下划线了。
如果帮助到了你,欢迎采纳!
祝学习愉快!
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星