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개의 값으로 padding을 적용하면 첫 번째 값은 위쪽, 두 번째 값은 오른쪽, 세 번째 값은 아래쪽, 네 번째 값은 왼쪽에 각각 적용됩니다.

구문 2:

img
{
Padding: 10px,10px,10px; //padding positions
}
로그인 후 복사

구문 설명:

3가지 값으로 padding을 적용하면 첫 번째는 위쪽, 두 번째는 왼쪽 및 오른쪽, 세 번째는 아래쪽이 적용됩니다.

구문 3:

img
{
Padding: 10px,10px; //padding positions
}
로그인 후 복사

구문 설명:

두 개의 값으로 패딩을 적용하면 첫 번째 값은 위쪽과 아래쪽에 적용되고 두 번째 값은 왼쪽과 오른쪽에 각각 적용됩니다.

구문 4:

img
{
Padding: 10px; //padding positions
}
로그인 후 복사

구문 설명:

단일 값으로만 ​​패딩을 적용하는 경우 네 변 모두에 동일하게 사용하세요.

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과 두 번째 이미지 클래스 이름 패딩을 HTML 코드에서 가져왔습니다.
  • CSS 코드에서 noPadding 클래스는 5px 테두리로 패딩이 없습니다. 패딩 없음은 이미지 주위에 공간을 제공하지 않습니다. 그것은 엄격하게 국경에 붙어 있습니다. 위 1첫 번째이미지
  • 에서 확인하실 수 있습니다.
  • padding 클래스에는 패딩 50px 및 50px 테두리가 있습니다. 이미지 주변의 패딩으로 인해 테두리에서 약간의 공간이 보입니다. 두 번째이미지
  • 에서 확인하실 수 있습니다.

예제 #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, 두 번째 이미지 클래스 이름 패딩을 HTML 코드에서 가져왔습니다.
  • CSS 코드에서 noPadding 클래스는 5px 테두리로 패딩이 없습니다. 패딩 없음은 이미지 주위에 공간을 제공하지 않습니다. 그것은 엄격하게 국경에 붙어 있습니다. 위 1첫 번째이미지
  • 에서 확인하실 수 있습니다.
  • padding 클래스에는 50px, 20px, 50px, 5px 테두리 패딩이 있습니다. 이미지 상단 50px, 왼쪽 및 오른쪽 20px, 하단 50px 주변의 패딩으로 인해 각각. 우리는 국경에서 약간의 공간을 보았습니다. 두 번째이미지
  • 에서 확인할 수 있습니다.

예 #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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!