개발/개발 자료

(HTML,JSP) 링크 태그 색 바꾸기 or 링크 밑줄 없애기 - jsp, htm

시원한물냉 2013. 12. 10. 10:25


** 링크 색이 검정색으로..

<body vlink="black">

 

 

** 링크 밑줄이 안생기게 하기

<style type="text/css"> 
  a:link { text-decoration: none;} 
  a:visited { text-decoration: none;} 
  a:active { text-decoration: none;}
  a:hover {text-decoration:underline;}
</style>