Removing outline on image map area

前端 未结 7 1305
攒了一身酷
攒了一身酷 2020-12-14 01:38

Is there anyway to remove the outline when you select an area on an image map? See: \"enter

7条回答
  •  既然无缘
    2020-12-14 02:03

    Give your imagemap an id of "Map" then use the following CSS declaration:

    #Map area {
        outline: none;
    }
    

提交回复
热议问题