CSS style for vertically centering images within a div with variable width and height

不言
Release: 2018-06-28 11:50:55
Original
2733 people have browsed it

This article mainly introduces the css style for vertical centering of images in variable width and height divs. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

This article mainly introduces It introduces how to vertically center the image in p when the width and height are variable, and how to write the css style? The sample code is as follows

The simplest method is to set the css attribute of the outer element:

p{ 
display: table-cell; 
}
Copy after login

But IE6/7 does not support this css style. In order to be compatible with them, you can use the following method. The structure of

html is as follows:

<p><span></span><img src="test.png" alt=""></p>
Copy after login

css code is as follows:

p{ 
width: 100px; 
height: 100px; 
border: 1px solid #ccc; 
} 
span{ 
line-height: 100%; 
vertical-align: middle; 
display: inline-block; 
height: 100%; 
} 
img{ 
width: 100%; 
vertical-align: middle; 
}
Copy after login

By setting the above properties, the effect of the picture below can be achieved. The picture is vertically centered in p.

The principle of this method is to insert an empty span tag in front of the img tag and use it to expand the row height in p to 100%.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

How to set vertical centering for images of unknown height

About CSS banner image responsive centering display Methods

The above is the detailed content of CSS style for vertically centering images within a div with variable width and height. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!