본문 바로가기
Front-End/CSS

display, visibility, opacity 프로퍼티

by kk님 2023. 9. 14.

display
inline-block
none: 아예 보이지 않음

display 요소는 상속되지 않는다

inline요소(block요소를 포함할 수 없다)
width, heigth 요소 지정 불가능
margin-top, margin-bottom 지정 불가능

https://oursmalljoy.com/css-width-auto-height-auto-기본개념-잘못-생각하고-있는-것들/

【CSS】 width: auto와 height: auto 당신이 몰랐던 작동 원리 ⋆ Our Small Joy

width: auto와 height: auto는 우리가 생각했던 것이랑 다르게 작동할 때가 있다. 특히 이 설정값들은 기본 설정값이기 때문에 모든 사람들이 겪게 될 잠재적 문제이다. 이 포스트에서는 이들의 작동원

oursmalljoy.com


visibility
렌더링 여부 결정

display :none과
visibility :hidden 차이

'Front-End > CSS' 카테고리의 다른 글

CSS Specificity (CSS 특이성. 선택자 우선순위 점수)  (0) 2023.12.15
position  (1) 2023.11.19
Chakra UI  (0) 2023.04.03
bootstrap  (0) 2023.03.28
Ant-Design  (0) 2023.03.22