Home > Article > Web Front-end > How to set the interval between pictures with css
How to set the interval between pictures in css: first create a new html file; then create a div, and use the img tag to create two pictures within the div; finally use the margin attribute to set the distance between the two pictures Just distance.
The operating environment of this tutorial: Dell G3 computer, Windows 7 system, HTML5&&CSS3 version.
Recommended: "css video tutorial"
How to set the distance between two images in css
Create a new one HTML file, named test.html, is used to explain how to set the distance between two images in CSS.
In the test.html file, create a div and set its class attribute to dd, which will be used to set the css style of the div below.
Inside the div, use the img tag to create two pictures, with the picture names being 1.jpg and 3.jpg respectively.
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.
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.
The above is the detailed content of How to set the interval between pictures with css. For more information, please follow other related articles on the PHP Chinese website!