如图:像这种下拉菜单的小三角(图中绿圈处)怎么用纯html,css代码实现?

2024-11-20 09:36:22
推荐回答(1个)
回答1:

鼠标移上去的时候“我的工作”背景图变成带箭头的就行了
比如说:
页面代码是


那么css样式表里就定义
.aaa{height:32px;width:100px; background:url(纯红色背景图片地址);}
.aaa a:hover{display:block; height:30px;width:100px; background:url(带箭头的背景图片地址);}