--- title: margin-bottom slug: Web/CSS/margin-bottom tags: - CSS - CSS Property - Reference translation_of: Web/CSS/margin-bottom --- <div>{{CSSRef}}</div> <p><strong><code>margin-bottom</code></strong> <a href="/ko/docs/Web/CSS">CSS</a> 속성은 요소의 아래쪽에 <a href="/ko/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model">바깥 여백 영역</a><sup>margin area</sup>을 설정합니다. 양수 값은 인접 요소와 거리를 넓히고, 음수 값은 더 좁힙니다.</p> <div>{{EmbedInteractiveExample("pages/css/margin-bottom.html")}}</div> <p>{{HTMLElement("span")}}, {{HTMLElement("code")}} 등 <a href="/ko/docs/Web/CSS/Replaced_element">비대체</a><sup>non-replaced</sup> 인라인 요소에는 효과가 없습니다.</p> <h2 id="Syntax" name="Syntax">구문</h2> <pre class="brush: css">/* <length> 값 */ margin-bottom: 10px; /* 절대 길이 */ margin-bottom: 1em; /* 글씨 크기에 상대적 */ margin-bottom: 5%; /* 가장 가까운 블록 컨테이너의 너비에 상대적 */ /* 키워드 값 */ margin-bottom: auto; /* 전역 값 */ margin-bottom: inherit; margin-bottom: initial; margin-bottom: unset;</pre> <p><code>margin-bottom</code> 속성은 키워드 <code>auto</code>, <code><length></code>, <code><percentage></code>를 사용해 설정할 수 있습니다. 값은 양수, 0, 음수가 가능합니다.</p> <h3 id="Values" name="Values">값</h3> <dl> <dt>{{cssxref("<length>")}}</dt> <dd>바깥 여백 크기의 고정 값.</dd> <dt>{{cssxref("<percentage>")}}</dt> <dd>바깥 여백 크기와 블록 컨테이너 너비의 비율.</dd> <dt><code>auto</code></dt> <dd>브라우저가 적절한 값 선택. {{cssxref("margin")}}을 참고하세요.</dd> </dl> <h3 id="형식_구문">형식 구문</h3> {{csssyntax}} <h2 id="Examples" name="Examples">예제</h2> <pre class="brush:css;">.content { margin-bottom: 5%; } .sidebox { margin-bottom: 10px; } .logo { margin-bottom: -5px; } #footer { margin-bottom: 1em; } </pre> <h2 id="Specifications" name="Specifications">명세</h2> <table class="standard-table"> <thead> <tr> <th scope="col">Specification</th> <th scope="col">Status</th> <th scope="col">Comment</th> </tr> </thead> <tbody> <tr> <td>{{SpecName('CSS3 Box', '#the-margin', 'margin-bottom')}}</td> <td>{{Spec2('CSS3 Box')}}</td> <td>No significant change</td> </tr> <tr> <td>{{SpecName('CSS3 Transitions', '#animatable-css', 'margin-bottom')}}</td> <td>{{Spec2('CSS3 Transitions')}}</td> <td>Defines <code>margin-bottom</code> as animatable.</td> </tr> <tr> <td>{{SpecName('CSS2.1', 'box.html#margin-properties', 'margin-bottom')}}</td> <td>{{Spec2('CSS2.1')}}</td> <td>Removes its effect on inline elements.</td> </tr> <tr> <td>{{SpecName('CSS1', '#margin-bottom', 'margin-bottom')}}</td> <td>{{Spec2('CSS1')}}</td> <td>Initial definition</td> </tr> </tbody> </table> <p>{{cssinfo}}</p> <h2 id="Browser_Compatibility" name="Browser_Compatibility">브라우저 호환성</h2> <p>{{Compat("css.properties.margin-bottom")}}</p>