Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- PER
- javascript
- 맛집
- PyQt5
- flutter
- ubuntu
- MySQL
- 날짜
- urllib
- GIT
- 유니티
- Linux
- 라즈베리파이
- PyQt
- mssql
- sqlite
- 리눅스
- port
- ASP
- 함수
- IOS
- MS-SQL
- tensorflow
- swift
- Unity
- python
- pandas
- node.js
- Excel
- 다이어트
Archives
아미(아름다운미소)
a태그 파란색 및 밑줄 없애기 본문
예)
<HEAD>
<TITLE> 링크에 밑줄 없애기 </TITLE>
<style type="text/css">
a:link { color: red; text-decoration: none;}
a:visited { color: black; text-decoration: none;}
a:hover { color: blue; text-decoration: underline;}
</style>
(설명)
style 소스의 type = text를 제어하는 css로 한다.
a:link : 클릭하지 않은 링크
a:visited : 한번 클릭했던 혹은 다녀갔던 링크
a:hover : 링크를 클릭하려고 마우스를 가져갔을 때
decoration : 밑줄
none : 없는 상태
underline : 있는 상태
a:active : 링크부분에서 마우스를 누르고 있는 동안의 상태
'랭귀지 > HTML' 카테고리의 다른 글
select box 크기를 style속성으로 고정 (0) | 2019.02.12 |
---|---|
HTML 의 특수 코드 정리 (0) | 2018.03.31 |
크롬에서 input, textarea, button에 생기는 파란색 테두리 없애는 방법 (0) | 2018.03.16 |
HTML input onfocus and onblur (0) | 2018.03.15 |
html css 태그, div 중앙정렬 방법 (0) | 2018.02.13 |
Comments