display: inline
width
, height
속성에 영향을 받지 않는다<span>
, <a>
, <img>
<em>
, <i>
, <strong>
, <small>
.inline-element {
display: inline;
width: 1000px; /* ❌ won't have any effect */
height: 1000px; /* ❌ won't have any effect */
}
<button>
, <input>
, <select>
, <textarea>
.inline-block-element {
display: inline-block;
width: 1000px; /* ✅ yes, it will work */
height: 1000px; /* ✅ yes, it will work */
}
<div>
, <h1>
, <p>
, <li>
, <section>
이미지 출처:
https://www.samanthaming.com/pictorials/css-inline-vs-inlineblock-vs-block/