HTML에서 여백과 패딩은 HTML 콘텐츠의 요소 간격을 지정하는 데 사용되는 두 가지 요소입니다. 여백은 HTML 요소의 외부 공간이고 패딩은 요소의 내부 공간이지만 두 개념 모두 HTML 요소의 공간 복잡성을 대상으로 합니다. 모든 HTML 요소 태그 세트는 패딩과 여백을 활용하여 속성과 동작을 정의합니다. 또한 웹페이지와 같은 HTML 문서가 사용자 관점에서 더욱 매력적으로 보일 수 있는 방법을 인식합니다.
다음은 HTML Padding과 Margin의 상위 6가지 비교입니다:
다음 사항에서 HTML 패딩과 여백의 주요 차이점을 살펴보겠습니다.
아래 표에는 HTML 패딩과 여백의 비교가 요약되어 있습니다:
HTML Padding | HTML Margins |
It is used to create the space inner side of the web pages in the HTML contents. | The outer side of the HTML contents in the web pages is declared using it. |
It has different types like top, bottom, left and right paddings. | There are various types of margins, including top, bottom, left, and right margins. |
It is mainly used for the CSS styles on the web pages. | Similarly, within CSS styles and certain HTML contents, margins are commonly utilized for the layout of web pages. |
It coordinates and combines with the other HTML tags, which help in the attributes and behavior of the HTML web pages. | It also combines with the other HTML tags, helping in the attributes and behaviors of the HTML web pages. |
The padding property sets the padding areas for all the four-sides of the HTML elements. | The margin property sets the margin areas on either top, bottom, left, or right based on the values we specified in the styles of documents. |
We can use javascript to set the padding sizes in the web pages automatically. | We also use Javascript to set the margin length on the web pages automatically. |
다음은 HTML 패딩 및 HTML 여백의 예입니다.
코드:
<html> <head> <style> #sample { border: 2px solid orange; padding: 38px; } .sample2 { border: 4px solid orange; margin: 39px; } </style> </head> <body> <div id="sample">Welcome</div> <br> <button type="button" onclick="samples()">To My Domain</button> <script> function samples() { document.getElementById("sample").style.padding = "22px 23px"; } </script> </body> </html>
출력:
위 예에서는 자바스크립트를 사용하여 웹페이지의 패딩 크기를 자동으로 설정했습니다. "to mydomain" 아이콘을 클릭하면 패딩 크기가 정렬됩니다.
코드:
<html> <head> <style> #sample { border: 2px solid orange; margin-left: 19%; } .sample2 { border: 4px solid orange; margin-top: 14%; } </style> </head> <body> <div id="sample">Welcome</div> <br> <button type="button" onclick="samples()">set margins</button> <script> function samples() { document.getElementById("sample").style.margin = "3%"; } </script> </body> </html>
출력:
위의 동일한 예에서는 버튼을 클릭할 때 자동으로 여백 값을 설정하기 위해 javascript 함수를 사용합니다.
HTML 패딩과 여백은 시각적으로 매력적인 웹페이지를 만들고 프런트 엔드 패널에 형식적인 스타일을 적용하는 데 중요한 구성 요소입니다. 유연해야 하는 전문적인 콘텐츠에 중점을 두고, 사용자 입력 값이 백엔드와 프런트엔드에서 적절하게 정렬되도록 플롯합니다. Javascript와 Bootstrap 및 jquery 라이브러리와 같은 기타 프레임워크가 이러한 HTML 요소와 결합됩니다.
위 내용은 HTML 패딩과 여백의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!