我尝试在鼠标光标位于帮助图标上时显示跨度。
它可以工作,但是尽管如此,我还是无法删除图标周围的边框。
我的CSS:
.info{ position:absolute; border:none; } a.info{ position:absolute; z-index:24; background:none; color:#000; text-decoration:none } a.info:hover{ z-index:25; background-color:#FFF; cursor:help; } a.info span{ display: none } a.info:hover span{ display:block; position:absolute; cursor:help; bottom:0px; left:26px; width:150px; padding:4px; }
光盘
尝试这个:
img{border:0;}
您还可以通过以下方式限制范围并仅删除某些图像上的边框:
.myClass img{border:0;}
可以在此处找到有关border css属性的更多信息。
编辑:将边框从更改0px为0。如注释中所述,px对于的单位是多余的0。
0px
0
px