앵커(링크)의 밑줄을 제거하는 방법? 페이지에 소개된 텍스트 및 링크에 대한 밑줄을 피할 수 있는 방법이 (CSS에) 있습니까? CSS 를합니다. 그러면 밑줄이 제거됩니다.a그리고.u요소: a, u { text-decoration: none; } 때로는 요소에 대해 다른 스타일을 재정의해야 합니다. 이 경우에는!important규칙의 수식어: a { text-decoration: none !important; } CSS는 text-decoration: none; 그리고. text-decoration: underline; 이렇게 하면 색상과 함께 앵커 태그가 존재하는 밑줄이 제거됩니다. a { text-decoration: none; } a:hover { color: white; text-decoratio..