ホームページ > 記事 > ウェブフロントエンド > HTML パディングとマージン
HTML では、マージンとパディングは、HTML コンテンツ内の要素の間隔を空けるために使用される 2 つの要素です。マージンは HTML の要素の外部スペースであり、パディングは要素の内部スペースですが、どちらの概念も HTML 要素のスペースの複雑さを対象としています。 HTML 要素タグのすべてのセットは、パディングとマージンを利用して属性と動作を定義します。また、Web ページなどの HTML ドキュメントをユーザーの観点からより魅力的にする方法も認識します。
以下は、HTML パディングとマージンの上位 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>
出力:
上記の例では、JavaScript を使用して Web ページのパディング サイズを自動的に設定します。 「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 のパディングとマージンは、視覚的に魅力的な Web ページを作成し、フロントエンド パネルに正式なスタイルを適用するために重要なコンポーネントです。柔軟性が求められるプロフェッショナルなコンテンツに焦点を当て、バックエンドとフロントエンドで適切に調整されるようにユーザー入力値をプロットします。 Javascript と、Bootstrap や jquery ライブラリなどの他のフレームワークは、これらの HTML 要素と結合します。
以上がHTML パディングとマージンの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。