Skip to content

Commit 941c136

Browse files
authored
Update Css.md
1 parent b73da37 commit 941c136

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

CSS/Css.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
11
[css참고](https://poiemaweb.com/css3-syntax)
2+
3+
# css에서 link a tag 밑줄 지우기
4+
```
5+
a:link {
6+
color: black;
7+
}
8+
a {
9+
text-decoration: none;
10+
text-decoration-line: none;
11+
}
12+
a:visited {
13+
color: black;
14+
}
15+
```

0 commit comments

Comments
 (0)