관리 메뉴

I LOVE EJ

링크 점선 없애기 본문

Web publishing/HTML & CSS

링크 점선 없애기

BeOne 2010. 6. 29. 13:59

Javascript 를 이용한

<html>
<head>
<title> 링크 점선 없애기 </title>
<script type="text/javascript">
<!--
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
// -->
</script>
</head>
<body>

</body>
</html>

 

css 를 이용한 방법 

<style type="text/css">
 a, area {blr:expression(this.onFocus=this.blur())}
 :focus {-moz-outline-style:none;}
</style>