HTML画像のパディング

WBOY
リリース: 2024-09-04 16:49:49
オリジナル
1250 人が閲覧しました

HTML のパディング プロパティは、ボックスのような構造の最も内側の要素のコンテンツの周囲にスペースを与えます。 HTML の margin プロパティは、ボックスのような構造の最も外側の要素のコンテンツの周囲にスペースを提供します。パディングとマージンの周囲のスペースはボーダーと呼ばれます。

パディング、マージン、ボーダーの違いは以下で確認できます:

HTML画像のパディング

  • すべてのページに共通のスタイルがあることがわかっているため、私たちは常に HTML よりも CSS を優先しました。
  • すべての共通プロパティは CSS のみで実装されます。

HTML または CSS での画像パディングはどのように機能しますか?

  • パディングにより、画像であろうとコンテンツであろうと、常に最も内側の部分の間にスペースが作成されます。
  • 画像によるパディングはCSSのimgタグのみで定義します。

構文 1:

img
{
Padding: 10px,10px,10px,10px; //padding positions
}
ログイン後にコピー

構文 1 説明:

4 つの値でパディングを適用すると、最初の値は上部に、2 番目の値は右側に、3 番目の値は下部に、4 番目の値は左側にそれぞれ適用されます。

構文 2:

img
{
Padding: 10px,10px,10px; //padding positions
}
ログイン後にコピー

構文の説明:

3 つの値でパディングを適用する場合、最初の値は上部に適用され、2 番目は左右に適用され、3 番目は下部に適用されます。

構文 3:

img
{
Padding: 10px,10px; //padding positions
}
ログイン後にコピー

構文の説明:

2 つの値でパディングを適用する場合、最初の値は上と下に適用され、2 番目の値は左と右にそれぞれ適用されます。

構文 4:

img
{
Padding: 10px; //padding positions
}
ログイン後にコピー

構文の説明:

単一の値のみでパディングを適用する場合は、4 つの辺すべてに均等にパディングを使用します。

HTML 画像パディングの例

以下は HTML 画像パディングの例です:

例 #1 – 4 つのパディング値による画像パディング

HTML コード:

<!DOCTYPE html>
<html>
<head>
<title>Image Padding</title>
<link rel="stylesheet" href="ImagePaddingFourSides.css"></link>
</head>
<body>
<font color="green">
<h2>Image without Padding</h2>
</font>
<p>
<img src="Tulips.jpg" class="noPadding">
</p>
<font color="green">
<h2>Image with Padding</h2>
</font>
<p>
<img src="Tulips.jpg" class="padding">
</p>
</body>
</html>
ログイン後にコピー

CSS コード:

.noPadding
{
width:400px;
height:400px;
border: 5px solid brown;
}
.padding
{
width:400px;
height:400px;
padding: 50px 50px 50px 50px;
}
ログイン後にコピー

出力:

パディングを適用する前:

HTML画像のパディング

パディング適用後:

HTML画像のパディング

説明:

  • 最初のイメージ クラス名、noPadding、および 2 番目のイメージ クラス名のパディングは、上記のコードの HTML コードに取り込まれています。
  • CSS コードでは、noPadding クラスに 5 ピクセルの境界線を持つパディングなしのクラスがあります。パディングなしでは、画像の周囲にスペースが生じません。厳密に境界線に張り付いています。上の 1st 画像で確認できます。
  • パディング クラスには、パディング 50 ピクセルと 50 ピクセルのボーダーがあります。画像の周囲にこのパディングがあるため、境界線からいくらかのスペースが見られます。 2 番目の画像で確認できます。

例 #2 – 3 つのパディング値による画像パディング

HTML コード:

<!DOCTYPE html>
<html>
<head>
<title>Image Padding</title>
<link rel="stylesheet" href="ImagePaddingThreeSides.css"></link>
</head>
<body>
<font color="green">
<h2>Image without Padding</h2>
</font>
<p>
<img src="Koala.jpg" class="noPadding">
</p>
<font color="green">
<h2>Image with Padding</h2>
</font>
<p>
<img src="Tulips.jpg" class="padding">
</p>
</body>
</html>
ログイン後にコピー

CSS コード:

.noPadding
{
width:400px;
height:400px;
border: 5px solid yellow;
}
.padding
{
width:400px;
height:400px;
padding: 50px 20px 50px;
border: 5px solid yellow;
}
ログイン後にコピー

出力:

パディングを適用する前:

HTML画像のパディング

パディング適用後:

HTML画像のパディング

説明:

  • 上記のコードでは、最初の画像クラス名、noPadding、および 2 番目の画像クラス名のパディングが HTML コードで取得されています。
  • CSS コードでは、noPadding クラスに 5 ピクセルの境界線を持つパディングなしのクラスがあります。パディングなしでは、画像の周囲にスペースが生じません。厳密に境界線に張り付いています。上の 1st 画像で確認できます。
  • padding クラスには、50px、20px、50px、5px の境界線のパディングがあります。このため、画像の上部は 50 ピクセル、左右は 20 ピクセル、下部は 50 ピクセルの周囲にパディングされます。国境から少しスペースが見えてきました。これは 2 番目の画像で確認できます。

例 #3 – 3 つのパディング値による画像パディング

HTML コード:

<!DOCTYPE html>
<html>
<head>
<title>Image Padding</title>
<link rel="stylesheet" href="ImagePaddingTwoSides.css"></link>
</head>
<body>
<font color="green">
<h2>Image without Padding</h2>
</font>
<p>
<img src="Desert.jpg" class="noPadding">
</p>
<font color="green">
<h2>Image with Padding</h2>
</font>
<p>
<img src="Desert.jpg" class="padding">
</p&gt
</body>
</html>
ログイン後にコピー

CSS コード:

.noPadding
{
width:400px;
height:400px;
border: 5px solid yellow;
}
.padding
{
width:400px;
height:400px;
padding: 75px 50px;
border: 5px solid yellow;
}
ログイン後にコピー

出力:

パディングを適用する前:

HTML画像のパディング

パディング適用後:

HTML画像のパディング

説明:

  • The first image class name, noPadding, and second image class name padding have been taken in HTML code in the above code.
  • In CSS code, the noPadding class has without padding with a 5px border. No padding does not give any space around the image. It strictly sticks to the border. You can see it in the above 1st  image.
  • The padding class has padding 75px 50px and 5px border. Due to this, padding around the image’s top and bottom is 50px, and the left and right are 50px, respectively. We have seen some space from the border. You can see it in the 2nd image.

Example #4 – Image Padding with a Single Padding Value

HTML Code:

<!DOCTYPE html>
<html>
<head>
<title>Image Padding</title>
<link rel="stylesheet" href="ImagePaddingSingleSides.css"></link>
</head>
<body>
<font color="green">
<h2>Image without Padding</h2>
</font>
<p>
<img src="Penguins.jpg" class="noPadding">
</p>
<font color="green">
<h2>Image with Padding</h2>
</font>
<p>
<img src="Penguins.jpg" class="padding">
</p>
</body>
</html>
ログイン後にコピー

CSS Code:

.noPadding
{
width:400px;
height:400px;
border: 5px solid blue;
}
.padding
{
width:400px;
height:400px;
padding: 70px;
border: 5px solid blue;
}
ログイン後にコピー

Output:

Before applying padding:

HTML画像のパディング

After applying padding:

HTML画像のパディング

Explanation:

  • The first image class name, noPadding, and second image class name padding have been taken in HTML code in the above code.
  • In CSS code, the noPadding class has without padding with a 5px border. No padding does not give any space around the image. It strictly sticks to the border. You can see it in the above 1st image.
  • The padding class has a padding of 70 and a 5px border. Due to this, we were padding around the image top, left, right and bottom 70px around, respectively. We have seen some space from the border. You can see it in the 2nd image.

If we want to apply only particular side padding, then CSS provides predefined properties:

  • Padding-left: 10px: apply padding 10px to the left side.
  • Padding-right: 10px: apply padding 10px to the right side.
  • Padding-top: 10px: apply padding 10px to the top side.
  • Padding-bottom: 10px: apply padding 10px bottom side.
Note: To include css file in HTML, use tag.

Conclusion

Image padding gives space around the innermost portion. We can apply with one, two, three, and four values with padding inside the img tag.

以上がHTML画像のパディングの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!