링크 점선 안보이는 방법 모음 CSS수정

링크 점선 안보이는 방법 모음 CSS수정

다온아빠 0 10926

PC 또는 모바일 환경에 따라 적용이 안될수도 있습니다.

방법1.

a {outline:none; select-dummy: expression(this.hideFocus=true);}

 

방법2.

*:focus {
     outline: none;
}dm

은펴어구 무료광고 다온네 가족 홈페이지 

방법3

onFocus=this.blur(); 

<a href=http://os2122.iwinv.net onFocus=this.blur();>다온네</a>

 

방법4

 a {outline:none; selector-dummy:expression(this.hideFocus=true);}

방법5 

<head></head> 사이에  

<script language="javascript">
<!--
function allblur() {
for (i = 0; i < document.links.length; i++)
document.links[i].onfocus = document.links[i].blur;
}
//-->
</script>​

  

 

 

다온네  태그연습장 에서 테스트 가능합니다.

위 소스를 복사후

http://daonsol.com/bbs/board.php?bo_table=Free&wr_id=151



0 Comments