css horizontal centering and vertical centering_html/css_WEB-ITnose
Horizontal centering:
Inline elements: text-align:center; Centered display relative to the parent
Block-level elements: margin:0 auto; but width is required at the same time, otherwise it cannot See the effect
Multiple block-level elements are centered: I would like to discuss display:inline-block; and display:flex;
Method 1: Set text-align:center; on the parent; on the element Setting: display: inline-block; At the same time, in order to make the text display to the left, set text-align: left; the display in the browser is that the child element height is adaptive and the bottom is aligned.
Method 2: Set display:center;justify-content:center on the child element; the height of the child element is consistent, which is the same as the height of the element with the most content.
The two methods are compatible with Google, Firefox, and 360, but the second method is not compatible with IE10, and previous IE versions are also incompatible. Of course, we also have to deal with the problem of separation from the layer due to floating, and the parent background color cannot be added.
1 <main class="inline-block-center"> 2 <div> 3 I'm an element that is block-like with my siblings and we're centered in a row. 4 </div> 5 <div> 6 I'm an element that is block-like with my siblings and we're centered in a row. I have more content in me than my siblings do. 7 </div> 8 <div> 9 I'm an element that is block-like with my siblings and we're centered in a row.10 </div>11 </main>
1 <main class="flex-center"> 2 <div> 3 I'm an element that is block-like with my siblings and we're centered in a row. 4 </div> 5 <div> 6 I'm an element that is block-like with my siblings and we're centered in a row. I have more content in me than my siblings do. 7 </div> 8 <div> 9 I'm an element that is block-like with my siblings and we're centered in a row.10 </div>11 </main>
1 body { 2 background: #f06d06; 3 font-size: 80%; 4 } 5 main { 6 background: white; 7 margin: 20px 0; 8 padding: 10px; 9 }10 main div {11 background: black;12 color: white;13 padding: 15px;14 max-width: 125px;15 margin: 5px;16 }17 .inline-block-center {18 text-align: center;19 }20 .inline-block-center div {21 display: inline-block;22 text-align: left;23 }24 .flex-center {25 display: flex;26 justify-content: center;27 }
Vertically centered:
Method 1: Set the values of padding-top and padding-bottom to be equal
Method 2: Set the values of height and line-height to be equal
Method 3: Fixed height can be handled in a way position:absolute; top:50%;height:100px;margin-top:-50px;If the height is not fixed, you can also use js to dynamically obtain the height.
There are also some properties of CSS3, which are not described in consideration of compatibility issues.

HTML is not only the skeleton of web pages, but is more widely used in many fields: 1. In web page development, HTML defines the page structure and combines CSS and JavaScript to achieve rich interfaces. 2. In mobile application development, HTML5 supports offline storage and geolocation functions. 3. In emails and newsletters, HTML improves the format and multimedia effects of emails. 4. In game development, HTML5's Canvas API is used to create 2D and 3D games.

TheroottaginanHTMLdocumentis.Itservesasthetop-levelelementthatencapsulatesallothercontent,ensuringproperdocumentstructureandbrowserparsing.

The article explains that HTML tags are syntax markers used to define elements, while elements are complete units including tags and content. They work together to structure webpages.Character count: 159

The article discusses the roles of <head> and <body> tags in HTML, their impact on user experience, and SEO implications. Proper structuring enhances website functionality and search engine optimization.

The article discusses the differences between HTML tags , , , and , focusing on their semantic vs. presentational uses and their impact on SEO and accessibility.

Article discusses specifying character encoding in HTML, focusing on UTF-8. Main issue: ensuring correct display of text, preventing garbled characters, and enhancing SEO and accessibility.

The article discusses various HTML formatting tags used for structuring and styling web content, emphasizing their effects on text appearance and the importance of semantic tags for accessibility and SEO.

The article discusses the differences between HTML's 'id' and 'class' attributes, focusing on their uniqueness, purpose, CSS syntax, and specificity. It explains how their use impacts webpage styling and functionality, and provides best practices for


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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Zend Studio 13.0.1
Powerful PHP integrated development environment

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

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