[html/css/canvas] 캔버스 사이즈 조정하기(width/height)
[html/css/canvas] 캔버스 사이즈 조정하기(width/height) html에서 width height의 의미와 css를 통한 width height의 의미가 다르다 1차적으로 html값으로 설정이 된 후, css를 통하여 리사이징 된다 예를들어 html에서 2560x1440으로 설정 한 후 css에서 1920x1080으로 설정하였다면, 실제 사이즈는 1920x1080이지만, 컨텐츠 사이즈는 2560x1440일것이다
css
2022. 10. 1. 23:05
[css/html] ::after (:after) 개념과 사용법
[css/html] ::after (:after) 개념과 사용법 # ::after는 앞에 정의된 태그(요소)에 연장선으로 붙여서 내용을 표현할떄 사용한다. //로그인 영역 #loginWrap .goJoin { background-color: red; display: inline-block; width: 100%; padding: 20px 0 0; } //뒤에 붙이기 #loginWrap .goJoin::after { content: "가나다라"; display: inline-block; clear: both; background-color: blue; } #빨간 영역뒤에 가나다라의 파란 영역이 붙은걸 확인 할 수 있다. # :after는 css2문법 ::after는 css3문법이다, 기본적으론 ::afte..
css
2022. 3. 4. 12:05
반응형