[TIL] HTML & CSS

dev.soo·2020년 8월 19일
0

TIL

목록 보기
1/10

이틀간 공부한 HTML 과 CSS 내용 중 까먹을 것 같은 내용을 정리해 보았다.

ChapterSubjectTo remember
HTML & tag주요 태그필수태그: <!DOCTYPE> <html> <head> <body>
<a>태그 사용시 target="_blank" 추가하여 새창에서 열기
언어: 인코딩을 UTF-8
font stylefont-family, font size, font weight,font style, color 설정하기hex code - 6자리 #eb4639
rgb : red, green, blue - rgb(235, 70, 57),
hsl: hue, saturation, lightness - hsl(num, %, %)
문구 스타일텍스트 정렬, 들여쓰기(text-indent), blockquote
Margin & Padding& Border밑줄긋기border-bottom 으로 조정
Box-sizingpadding / margin 의 값을 포함하도록 함* {box-sizing: border-box;}
CSS Selectorinline: 1000점
id: 100점
class: 10점
tag: 1점
p.(id) 처럼 붙여쓸 때 : tag 이면서 class or id
띄워쓸 때: 부모 tag 안의 class or id
Imagealt, src, background-image 넣기div 내의 background-image 에 class 를 넣고 content 가 없으면 이미지가 뜨지 않는다.
Marginmargin auto 설정margin: 20px auto;
listol, ul 사용selector:first-child, last-child, nth-child(odd/even) 사용하여 리스트의 특정 번째 목록에 서식 추가
Inputtype 설정, placeholder/text 작성 button 스타일type:"text, number, password", textarea 태그 사이에 text 넣기, button 은 hover 로 처리

0개의 댓글