Tailwind CSS
-
CSS Display와 Spacing 완벽 가이드
“Claude 생성 문서” Display 속성의 기본값 display 속성의 기본값은 요소마다 다릅니다. Block 요소 (display: block) <div>, <p>, <h1>~<h6>, <ul>, <ol>, <li><header>, <footer>, <section>, <article><form>, <table> Inline 요소 (display: inline) <span>, <a>, <strong>, <em>, <b>, <i><code>, <small> Inline-block 요소 <img>, <button>, <input>, <select>, <textarea> 핵심: <div>는 기본값이 display: block이므로, 따로 지정하지 않아도 block으로 동작합니다. Grid의 gap… Continue reading
