3 ways to use css positioning to center img images (code examples)
How to center the img image with css? In the previous article [How to center the img image in css? The display attribute of css realizes image centering] We introduced two methods of display attribute to realize image centering. In this article, we will bring you 3 methods (code examples) of css using position positioning to achieve image centering. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
1. Set the css position positioning to center the img image, and know the width and height of the img image
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>img图片居中</title> <style> *{margin: 0;padding:0;} .demo{ width: 400px; height: 300px; margin: 50px auto; border: 1px dashed #000; position: relative; } .demo img{ width: 200px; height: 150px; position: absolute; top: 50%; left: 50%; margin-top: -75px; /* 高度的一半 */ margin-left: -100px; /* 宽度的一半 */ } </style> </head> <body> <div class="demo"> <img src="/static/imghw/default1.png" data-src="https://img.php.cn//upload/image/988/337/945/1539916533300688.jpg" class="lazy" / alt="3 ways to use css positioning to center img images (code examples)" > </div> </body> </html>
Rendering:
Instructions:
Set the demo box to relative positioning, and set the img to absolute positioning, left: 50%, top: 50%. At this time, the upper left corner of the image is located in the center of the div.
If you want the picture to be centered, the center of the picture and the center of the demo box must coincide, so you need to move the picture upward by half the height of the picture and move it to the left by half the width of the picture. half.
margin-top: -75px; /* 高度的一半 */ margin-left: -100px; /* 宽度的一半 */
2, css position positioning sets the img image to be centered, but I don’t know the width and height of the img image
1), css position positioning transform to achieve image centering
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>img图片居中</title> <style> *{margin: 0;padding:0;} .demo{ width: 400px; height: 300px; margin: 50px auto; border: 1px dashed #000; position: relative; } .demo img{ width: 200px; height: 150px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); } </style> </head> <body> <div class="demo"> <img src="/static/imghw/default1.png" data-src="https://img.php.cn//upload/image/214/416/131/1539921063326606.jpg" class="lazy" / alt="3 ways to use css positioning to center img images (code examples)" > </div> </body> </html>
Rendering:
Instructions:
Set left:50%, top:50%, so that the upper left corner of the picture is at The center of the demo box; at this time, as long as the center of the picture coincides with the center of the demo box, the picture can be centered. (See method 1 for details)
So how to make the center of the picture coincide with the center of the demo box? We need to move the image up by half the image height and to the left by half the image width. But I don’t know the width and height of the image, what should I do? At this time, we use transform: translate(-50%,-50%); to achieve the desired effect.
2), css position positioning margin to center the image
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>img图片居中</title> <style> *{margin: 0;padding:0;} .demo{ width: 400px; height: 300px; margin: 50px auto; border: 1px dashed #000; position: relative; } .demo img{ width: 200px; height: 150px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; } </style> </head> <body> <div class="demo"> <img src="/static/imghw/default1.png" data-src="https://img.php.cn//upload/image/214/416/131/1539921063326606.jpg" class="lazy" / alt="3 ways to use css positioning to center img images (code examples)" > </div> </body> </html>
Rendering:
Description:
Set the demo box to relative positioning, and set the img to absolute positioning: absolute, top: 0, left: 0, right: 0, bottom: 0. At this time, the upper left corner of the picture coincides with the upper left corner of the demo box:
When using margin: auto; let the img image be aligned horizontally and vertically with respect to the demo box, and the image centering effect can be achieved.
Summary: The above is a complete introduction to the three methods of css position positioning to center img images. I hope it will be helpful to everyone's learning. For more related tutorials, please visit CSS3 Video Tutorial, Html5 Video Tutorial, bootstrap Video Tutorial!
The above is the detailed content of 3 ways to use css positioning to center img images (code examples). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

It's out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That's like this.

I'd say "website" fits better than "mobile app" but I like this framing from Max Lynch:

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

CSS Grid is a collection of properties designed to make layout easier than it’s ever been. Like anything, there's a bit of a learning curve, but Grid is

I see Google Fonts rolled out a new design (Tweet). Compared to the last big redesign, this feels much more iterative. I can barely tell the difference
