search
HomeWeb Front-endCSS Tutorial3 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/imghwm/default1.png"  data-src="https://img.php.cn//upload/image/988/337/945/1539916533300688.jpg?x-oss-process=image/resize,p_40"  class="lazy"   / alt="3 ways to use css positioning to center img images (code examples)" >
		</div>
	</body>
</html>

Rendering:

3 ways to use css positioning to center img images (code examples)

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.

3 ways to use css positioning to center img images (code examples)

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; /* 宽度的一半 */

3 ways to use css positioning to center img images (code examples)

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/imghwm/default1.png"  data-src="https://img.php.cn//upload/image/214/416/131/1539921063326606.jpg?x-oss-process=image/resize,p_40"  class="lazy"   / alt="3 ways to use css positioning to center img images (code examples)" >
		</div>
	</body>
</html>

Rendering:

3 ways to use css positioning to center img images (code examples)

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/imghwm/default1.png"  data-src="https://img.php.cn//upload/image/214/416/131/1539921063326606.jpg?x-oss-process=image/resize,p_40"  class="lazy"   / alt="3 ways to use css positioning to center img images (code examples)" >
		</div>
	</body>
</html>

Rendering:

3 ways to use css positioning to center img images (code examples)

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:

3 ways to use css positioning to center img images (code examples)

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!

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
Where should 'Subscribe to Podcast' link to?Where should 'Subscribe to Podcast' link to?Apr 16, 2025 pm 12:04 PM

For a while, iTunes was the big dog in podcasting, so if you linked "Subscribe to Podcast" to like:

Browser Engine DiversityBrowser Engine DiversityApr 16, 2025 pm 12:02 PM

We lost Opera when they went Chrome in 2013. Same deal with Edge when it also went Chrome earlier this year. Mike Taylor called these changes a "Decreasingly

UX Considerations for Web SharingUX Considerations for Web SharingApr 16, 2025 am 11:59 AM

From trashy clickbait sites to the most august of publications, share buttons have long been ubiquitous across the web. And yet it is arguable that these

Weekly Platform News: Apple Deploys Web Components, Progressive HTML Rendering, Self-Hosting Critical ResourcesWeekly Platform News: Apple Deploys Web Components, Progressive HTML Rendering, Self-Hosting Critical ResourcesApr 16, 2025 am 11:55 AM

In this week's roundup, Apple gets into web components, how Instagram is insta-loading scripts, and some food for thought for self-hosting critical resources.

Git Pathspecs and How to Use ThemGit Pathspecs and How to Use ThemApr 16, 2025 am 11:53 AM

When I was looking through the documentation of git commands, I noticed that many of them had an option for . I initially thought that this was just a

A Color Picker for Product ImagesA Color Picker for Product ImagesApr 16, 2025 am 11:49 AM

Sounds kind of like a hard problem doesn't it? We often don't have product shots in thousands of colors, such that we can flip out the with . Nor do we

A Dark Mode Toggle with React and ThemeProviderA Dark Mode Toggle with React and ThemeProviderApr 16, 2025 am 11:46 AM

I like when websites have a dark mode option. Dark mode makes web pages easier for me to read and helps my eyes feel more relaxed. Many websites, including

Some Hands-On with the HTML Dialog ElementSome Hands-On with the HTML Dialog ElementApr 16, 2025 am 11:33 AM

This is me looking at the HTML element for the first time. I've been aware of it for a while, but haven't taken it for a spin yet. It has some pretty cool and

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!