반응형

*글자 효과 제거

- CSS에 text-decoration: none; 입력 시 글자에 적용된 효과가 제거된다. 

// HTML
<a href="#">안녕</a>
<div>
    <a href="#">안녕</a>
</div>

// CSS
div > a {
    /* 글자의 효과 제거 */
    text-decoration:none;
}
반응형

+ Recent posts