개발

HTML | image map area 클릭시 선 없애기

AM0530 2020. 12. 13. 23:59

1. 코드 

area 에 

style="outline: none;" 

를 추가하면 된다.

1
2
3
4
<img src="1.jpg" title="1.jpg" usemap="#map01">
    <map name="map01">
        <area shape="rect" coords="223,945,553,1004" alt="" href="https://" style="outline: none;">
    </map>
cs

 

 

* 참조 : 

stackoverflow.com/questions/4821724/removing-outline-on-image-map-area

 

Removing outline on image map area

Is there anyway to remove the outline when you select an area on an image map? See: I'm using Chrome on Snow Leopard.

stackoverflow.com