Style
-
[CSS] CSS의 모든 것 - (3)Link, List, Table, Display, Width, Positon, OverflowSTUDY/HTML.CSS.JS 2021. 3. 13. 19:28
CSS Links Lists Tables Layout- Display Property Layout - width and max-width Layout - The position Layout - Overflow CSS Links Link도 CSS 속성으로 스타일을 지정할 수 있다. a : link - 방문하지 않은 일반 링크 a : visited - 방문한 링크 a : hover - 사용자가 링크에 마우스를 올려둘 때 a : active - 클릭하는 순간의 링크 ex) a:link { color: red; } a:visited { color: green; } text-decoration 속성 : 링크의 밑줄을 제거할 때 사용하는 속성 Syntax text-decoration: none; background..