Home  >  Article  >  Web Front-end  >  How to adjust the spacing between pictures in html

How to adjust the spacing between pictures in html

青灯夜游
青灯夜游Original
2021-06-21 16:03:408626browse

In

html, you can use the margin-left or margin-right attributes to adjust the spacing between images. These two attributes can set the left and right margins of the element respectively. You only need to add "margin- "left:value;" or "margin-right:value;" styles are sufficient.

How to adjust the spacing between pictures in html

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

Adjust the spacing between pictures in html

Create a new html file and name it test.html; in the test.html file, create a div and set Its class attribute is dd.

How to adjust the spacing between pictures in html

Inside the div, use the img tag to create two pictures. The picture names are 1.jpg and 3.jpg respectively.

How to adjust the spacing between pictures in html

In order to show obvious effects, style the div. Set the div width to 600px, height to 500px, center it, and set a 1px gray border.

How to adjust the spacing between pictures in html

How to adjust the spacing between pictures in html

In the test.html file, use the margin attribute to set the distance between the two images. For example, to set the distance between image 1.jpg and image 3.jpg to 30px, you can use the margin-right attribute to set it.

How to adjust the spacing between pictures in html

How to adjust the spacing between pictures in html

In addition, you can also use margin to set the top, bottom, and left margins of the image. They are as follows:

  • margin-left: left margin;

  • margin-top: top margin;

  • margin-bottom: lower margin.

For example, use margin-left to set the left margin of image 3.jpg to 30px, which can also achieve the effect of the previous step.

How to adjust the spacing between pictures in html

How to adjust the spacing between pictures in html

margin You can also set the margins on all four sides of the picture at the same time, in order of "top, right, bottom, left", for example, set picture 1. The outer margins of jpg's "top, right, bottom, and left" are 10px, 20px, 30px, and 40px.

Recommended tutorial: "html video tutorial"

The above is the detailed content of How to adjust the spacing between pictures in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn