[210602 TIL] CSS

Choi Rim·2021년 6월 2일
0

CSS

목록 보기
3/7
post-thumbnail

list 점 없애기, 들여쓰기 없애기

ul{
   list-style:none;
   padding-left:0px;
   }

css 높이, 넓이 화면에 꽉 차게 하기

img {
  height: 100vh;
 }

단위 vh 사용하기

border 속성 사용하기

  • 테두리 얇게
border-width :thin;
  • 테두리 둥글게
border-radius: 10px

list 정렬 하는 법

  • li에 display : inline-block을 준 후 상위 ul에 text-align:center을 적용하면 정렬됨

태그 a에 링크 걸었을 시 색깔, 밑줄 없애기

text-docaration: none;
color: inherit;

링크 새 탭에서 열기

<a href = "www.google.com" target="_blank"></a>

<참고>

profile
https://rimi0108.github.io/

0개의 댓글