HTML&CSS
navigation /ul태그안에 li태그들 앞에 아무것도 안붙이기/ text-decoration: none; /클릭했거나 안하거나 색깔 검정으로
Linda~!
2020. 8. 20. 18:52
* {
padding: 0px;
margin: 0px;
/*이렇게 까지 하면 기본적으로 모든 요소들이 가지는 padding, margin 값이 어느 정도 있는데 그걸 0으로 없애 준다*/
box-sizing: border-box;
/*만약 뭔가를 고정 px로 만들 때 저절로 뭔가와 padding, margin 값을 포함해서 내가 원하는 크기로 만들어 준다.*/
}
list-style: none;
ul태그안에 li태그들 앞에 아무것도 안붙이기.
a태그에 밑줄없애기
text-decoration: none;
position : 여러종류 있는데 relative!!
기본값이 static인데
다른 element랑 겹칠 수 없음, 위치변경 불가능
클릭했거나 안하거나 색깔 검정으로
.test {
text-decoration: none;
color: black;
}
<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>