Home > Web Front-end > CSS Tutorial > How to center a floated element? How to center an absolutely positioned div?

How to center a floated element? How to center an absolutely positioned div?

王林
Release: 2020-06-15 16:45:40
forward
5256 people have browsed it

How to center a floated element? How to center an absolutely positioned div?

How to center a floating element? How to center an absolutely positioned div?

div centering:

border: 1px solid red;
margin: 0 auto; 
height: 50px;
width: 80px;
Copy after login

Floating elements are centered up, down, left and right:

border: 1px solid red;
float: left;
position: absolute;
width: 200px;
height: 100px;
left: 50%;
top: 50%;
margin: -50px 0 0 -100px;
Copy after login

Absolutely positioned left and right centering:

border: 1px solid black;
position: absolute;
width: 200px;
height: 100px;
margin: 0 auto;
left: 0;
right: 0;
Copy after login

Recommended tutorial: css Quick Start

The above is the detailed content of How to center a floated element? How to center an absolutely positioned div?. For more information, please follow other related articles on the PHP Chinese website!

source:juejin.im
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