반응형
1. inline
주로 텍스트를 입력할 때 사용하는 형태로 content 만큼 영역만큼 차지합니다
width와 height 값을 설정할 수 없다
요소 : <a>, <i>, <span>, <img>, <strong>, <input>, <sub>, <br>, <textarea>, <label>, <button>, <cite>...
2. inline-block
inline과 block의 특징을 모두 가진 요소이다
inline과 달리 element에 width와 height 값을 설정할 수 있고, 설정하지 않은 경우 content 만큼 영역을 차지합니다
3. block
한 영역을 차지하는 박스 형태이다
width, height, padding, margin 값을 설정할 수 있다
요소 : <div>, <header>, <form>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <table>, <ul>, <p>, <ol>, <video> ...
Resources
반응형
'Learning Log > HTML&CSS' 카테고리의 다른 글
[css] 배경화면 투명하게 하기 (0) | 2023.02.12 |
---|---|
[html] input과 button tag의 차이점 (0) | 2023.01.06 |
[html/css] 목록을 만드는 dl, dt, dd tag (0) | 2023.01.06 |
[css] Layout - position 속성이란 (0) | 2022.12.16 |
[html/css] Semantic Web과 Semantic Tags의 차이 (0) | 2022.12.08 |