Web(웹) Study/HTML & CSS
<a href> 언더바 없애는 방법
알 수 없는 사용자
2007. 11. 3. 22:52
== 방법 ① ==========================================================
<a href...><img src...></a>
처럼 엔터를 없애고 붙여 쓰세요. 아니면 스타일 시트를 이용해도 됩니다.
== 방법 ② ==========================================================
<STYLE TYPE='text/css'>
<!--
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:hover {color: red; text-decoration: underline}
.blinespace { line-height: 150%}
-->
</style>
<a href> = anchor hyper refference
<img src> = image source
공부하실때 실제 영어 단어로 읽어가며 하시면 더욱더 편하답니다.