#skip a {
height:0px;
left:310px;
overflow:hidden;
position:absolute;
top:0pt;
}
 
#skip a:hover, #skip a:focus, #skip a:active {
color:#000000;
height:auto;
}
 
간단하다 height를 0px를 기본으로 주고  hover,focus,active시에만 높이를 주는것..
심플하지 않은가??
display:none을 하는것보다 더 명확하다.
 
참조사이트 : http://www.webolution.co.kr 에서 개발한 모 사이트..
 
 
----------------------
실제로 적용해보면 왠지 쉽지 않다..
흠냥..
 
 
 
<style type="text/css">
#haha {
 height:0px;
 position:relative;
}
#haha a {
 height:0px; 
 position:absolute;
 overflow:hidden;
}

#haha a:hover, #haha a:focus, #haha a:active

 height:auto;
 overflow:visible;
}
</style>
</head>
<body>
<div id = "haha">
<a href="#">보이냐?</a>
</div>
</body>
 
적용해 봣다..
 
Posted by 삽지리
,