Detailed explanation of flex and position compatibility mining notes

Detailed explanation of flex and position compatibility mining notes

Today I had some free time to write a website for my own homepage, which is compatible with all browsers (mainly IE 9 and above and Chrome). There is a previous problem which is also a very common problem. Since I have encountered it, I might as well record it. Let’s look at the question directly

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Document Title</title>
</head>
<body>
	<div class="aaa">
      <div>
        
      </div>
  </div>
</body>
</html>
<style>
.aaa{
 	 width:700px;
 	 height:500px;
 	 position:absolute;
	 background-color:red;
  	 display: flex;
  	 align-items: center;
}
.aaa div{
  	height: 200px;
  	width:200px;
  	position: absolute;
 	background-color:yellow;		
}
</style>

Prerequisite: The sub-element needs to be centered horizontally, but position:absolute is required in the vertical direction. If position:relative or其他is required, it is the same in ie or chrome , and子元素width中點is used as the base point.

In IE: The properties in the parent container: display: flex;align-items: center; are horizontally centered, but the base point is左上角, as shown in the figure below. If you want to center it horizontally, you need to add: transform:translateX(-50%) , which means左移動自身width的50% . The advantage is that it does not matter whether you know the width of the element or not.

Chrome: Properties in the parent container: display: flex;align-items: center; directly center the child element horizontally, with the base point being子元素width的中點, rather than ie中的左上角;

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Write your HTML like this to make your code more compatible

>>:  How to modify the default storage location of Docker images (solution)

Recommend

4 solutions to mysql import csv errors

This is to commemorate the 4 pitfalls I stepped o...

How to start jar package and run it in the background in Linux

The Linux command to run the jar package is as fo...

Comprehensive understanding of html.css overflow

Comprehensive understanding of html.css overflow ...

MySQL database terminal - common operation command codes

Table of contents 1. Add users 2. Change the user...

Solution to the same IP after cloning Ubuntu 18 virtual machine

Preface I recently used a virtual machine to inst...

Some issues we should pay attention to when designing a web page

Web design, according to personal preferences and ...

Use the more, less, and cat commands in Linux to view file contents

In Linux, the commands cat, more, and less can al...

What are the usages of limit in MySQL (recommended)

SELECT * FROM table name limit m,n; SELECT * FROM...

MySQL DeadLock troubleshooting full process record

【author】 Liu Bo: Senior Database Manager at Ctrip...

In-depth analysis of nginx+php-fpm service HTTP status code 502

One of our web projects has seen an increase in t...

Steps to build a file server using Apache under Linux

1. About the file server In a project, if you wan...

Detailed explanation of how to find the location of the nginx configuration file

How can you find the location of the configuratio...

Several ways to submit HTML forms_PowerNode Java Academy

Method 1: Submit via the submit button <!DOCTY...

MySQL Error 1290 (HY000) Solution

I struggled with a problem for a long time and re...