search
HomeWeb Front-endHTML Tutorial居中那些事情_html/css_WEB-ITnose

居中那点事

最近碰到一些居中的问题需要处理,这里整理下碰到的问题以及一些解决的方案

文本水平居中

text-align:center;

可以知道,让一个元素水平居中可以使内容是inline或inline-block 非文本场景下,其实padding也可以实现相同效果。这个可以根据内容自适应,不然这样一来外层容器宽度就不固定了。

文本垂直居中

文本垂直居中 单行的时候

line-height: 30px;height: 30px;

如果是多行,那么可以考虑这样子

padding: 30px 0;

这样上下间距一样了,多行无压力

图片居中

这里分几个场景 1 容器比较大,且容器和图片是固定了宽高的,那么用上面的思路很容易解决,内联+line-height或内联+padding

//css.wrap0 {    height: 300px;    width: 100%;    text-align: center; } .c0{    line-height: 300px;    display: inline-block;}
//dom<div class="wrap0">    <div class="c0">我好</div></div>

2 容器比较大,但容器和图片宽高是不固定的,那么图片需要如何做自适应处理呢 水平方向上,依然还是使用内联元素文本居中方式就可以实现。 垂直方向上,其实可以想想如果是文本是否还有其他垂直居中方式,vertical-align,让行内元素居中对齐。考虑到这个其实还是会有些问题,vertical-align是多个元素的对齐方式,那么或许可以考虑让另一个元素隐藏起来就好。

//css  .wrap1 {    height: 100%;    width: 100%;    position: fixed;    text-align: center; }    .c1 {    height: 100px;    width: 100px;    background-color: gray;    display: inline-block;    vertical-align: middle; } .c2 {     height: 100%;    background-color: green;    display: inline-block;    vertical-align: middle;    width: 0; }
//dom<div class="wrap1">    <div class="c1"></div>    <div class="c2"></div></div>

3 容器比较小,而内容比较大,如何来做居中处理呢 首先来看看水平方向上如何处理 默认内容放置在容器中,内容和容器左边是对齐的,那么理论上是内层容器需要向左移动,才能实现对齐。现在的问题是需要移动多少呢

//考虑到方向position = (width[容器] - width[内容])/2

其实就是他们宽度之差的1/2,那么剩下的问题是怎么做到移动这么多? 常见的跟位置相关的样式有 top|left|right|bottom, margin, position,且 left和 margin是基于父元素的,那么如果内容设置了 left为50%,那么其实 width[容器]/2的值就出来了,而如果要实现 width[内容]/2,只需要在内容外嵌套一个元素,这个元素和内容宽高一致,那么设置内容 margin-left为50%,就可以实现了 width[内容]/2,考虑到公式是负值的,所以 margin-left应为50% 上面说的有些绕,可以直接看代码

 .wrap1 { height: 100px; width: 200px; margin: 0 auto; text-align: center; border: 1px solid red; position: relative; }     .wrap2 { height: 100px; width: 300px; margin: 0 auto; text-align: center; border: 2px solid blue; position: absolute; left: 50%; }    .c1 { width: inherit; height: inherit; background-color: gray; margin-left:-50%; }
 <div class="wrap1">    <div class="wrap2">        <div class="c1"></div>    </div></div>

这里留一个坑,如果c1元素是inline-block样式,会发生什么呢

同时,如果想在垂直方向上来实现这个效果,要这么做呢。 很容易想到上面那种做法,可以动手试下看看。 实际上是不行的,margin-top的值是基于父元素的宽度来计算的,而不是基于高度。所以。。。。 我们也可以通过一些特殊的方式去改变计算方式。比如让margin根据父元素的高度去计算 所以我们只需要在上面的wrap1样式中添加如下代码即可。

 -webkit-writing-mode: vertical-rl; /* for browsers of webkit engine */ writing-mode: tb-rl; /* for ie */

如果不采用这种样式,也可以使用js结合的方式去计算margin的值

多一点延伸的

其实提到按比例去计算位置,css3里面可以使用translate来配合使用,dom结构会更简洁,可悲的是万恶的ie8. 还是看看代码,先看看容器比内容大的场景:

 .wrap1 { width: 200px; height: 300px; margin: 300px auto; position: relative; border: 1px solid red; }    .c1 { width: 100px; height: 200px; position: absolute; top: 50%; left: 50%; background-color: gray; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
<div class="wrap1">    <div class="c1"></div></div>

上述代码在内容比容器大的时候照样适用

参考

  1. css writing mode
  2. margin系列之百分比
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
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

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 Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

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.