Css div center display method: 1. Use absolute absolute positioning, the code is [
absolute center positioning ]; 2. Use translate positioning; 3. Use margin to center positioning; 4. Use Fixed centered positioning.
The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.
Css div center display method:
1. Absolute absolute positioning This is our most commonly used center positioning writing method. It requires that the width and height of the div must be determined. Currently on the market Browsers on the Internet basically support this writing method
<html> <head> <meta charset="UTF-8"> <title>absolute居中定位</title> <style> *{margin:0;padding:0} .absoluteCenter{ width:600px; height:400px;position:absolute; background: rgb(50,183,97); left:50%; top:50%; margin-left: -300px; margin-top: -200px; } </style> </head> <body> <div>我是absolute居中定位</div> </body> </html>
2. Translate positioning This is the attribute of css3 transform that is positioned through its own offset, and it has a great advantage that it does not need to know the width and height of the div. Just like this self in js, you can set the width and height as a percentage. IE browser 3. Margin is centered. There is no need to determine the width and height of the div to allow top and bottom. , left and right are both 0 and add margin:auto. A stroke of genius IE browser<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>translate居中定位</title>
<style>
*{margin:0;padding:0}
.translateCenter{ width: 40%; height: 20%; position: absolute; left:50%; top:50%; transform:translate(-50%,-50%); background: #2d2d2d;}
</style>
</head>
<body>
<div>我是translate居中定位</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>margin居中定位</title>
<style>
*{margin:0;padding:0}
.marginCenter{ width:200px; height: 200px; position: absolute;left:0; top:0; right:0; bottom: 0; margin: auto; background: #f2056e;}
</style>
</head>
<body>
<div>我是margin居中定位</div>
</body>
</html>
4. Fixed center positioning is probably most commonly used to center the navigation bar. The display does not scroll with the page
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>fixed居中定位</title> <style> *{margin:0;padding:0} .fixedCenter{max-width:980px; height:70px; position:fixed; margin:0 auto; left:0; right:0; background:rgb(67,163,244);} </style> </head> <body> <div>我是fixed居中定位</div> </body> </html>
Recommended related tutorials: CSS video tutorial
The above is the detailed content of How to center display css div. For more information, please follow other related articles on the PHP Chinese website!

Here's a container with some child elements:

Flyout menus! The second you need to implement a menu that uses a hover event to display more menu items, you're in tricky territory. For one, they should

"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."- Tim Berners-Lee

In this week's roundup: datepickers are giving keyboard users headaches, a new web component compiler that helps fight FOUC, we finally get our hands on styling list item markers, and four steps to getting webmentions on your site.

The short answer: flex-shrink and flex-basis are probably what you’re lookin’ for.

In this week's look around the world of web platform news, Google Search Console makes it easier to view crawled markup, we learn that custom properties

The IndieWeb is a thing! They've got a conference coming up and everything. The New Yorker is even writing about it:


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

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

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

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.