====== HTML Tutorial - HTML Block & Inline Elements ====== * description : HTML Tutorial - HTML Block & Inline Elements * author : 오션 * email : shlim@repia.com * lastupdate : 2021-05-11 \\ =====Source of the article===== [[https://www.w3schools.com/html/html_blocks.asp|HTML Block and Inline Elements]]\\ \\ 모든 %%HTML%% 요소에는 요소 유형에 따라 기본 표시 값이 있습니다.\\ \\ 표시 값에는 %%block%%과 %%inline%% 두 가지가 있습니다.\\ =====Block-level Elements===== 블록-레벨 요소(A block-level element)는 항상 새 줄에서 시작합니다.\\ \\ 블록-레벨 요소는 항상 사용 가능한 전체 너비를 차지합니다(가능한 한 왼쪽과 오른쪽으로 확장).\\ \\ 블록 레벨 요소는 위쪽 및 아래쪽 margin을 가지지만, 인라인 요소는 가지고 있지 않습니다.\\ \\ %%
%% 요소는 블록-레벨 요소입니다.\\ ====Example====
Hello World

The Div element is a block element, and will always start on a new line and take up the full width available (stretches out to the left and right as far as it can).

\\ %%HTML%%에서 블록-레벨 요소들은 다음과 같습니다.\\