Home  >  Article  >  Web Front-end  >  How to set centering in css? A brief analysis of common methods

How to set centering in css? A brief analysis of common methods

PHPz
PHPzOriginal
2023-04-13 10:47:1340160browse

In web design, centering is a very common requirement, especially in layout. CSS provides different methods to achieve centering. Let’s take a look at some of the most common methods.

1. Horizontal centering

1. Use text-align (for block-level elements)

The text-align attribute can horizontally center the internal text of block-level elements. For example, p, h1, h2 and other tags, the sample code is as follows:

div {
  text-align: center;
}

2. Use margin (for block-level elements)

margin attribute can center the block-level elements horizontally and add left and right margins Just set it to auto. The sample code is as follows:

div {
  margin: 0 auto;
}

3. Use position and transform (for block-level elements)

The position attribute and transform attribute can achieve horizontal centering of block-level elements. Need Set the position attribute to absolute or fixed, and then use the transform attribute to translate the element 50% to the left. The sample code is as follows:

div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

2. Vertical centering

1. Use the line-height (for inline elements)

line-height attribute to achieve vertical centering of inline elements. Just set the value of line-height to the height of the container. The sample code is as follows:

div {
  height: 100px;
  line-height: 100px;
}

2. Use flexbox (for block-level elements)

Flexbox is a layout introduced in CSS3 In this way, you can easily achieve vertical centering of elements. You need to set display: flex on the container, and then use align-items: center to vertically center the element. The sample code is as follows:

.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

3. Use position and transform (for block-level elements)

The position attribute and transform attribute can also achieve vertical centering of the element. You need to set the position attribute to absolute or fixed, and then use the transform attribute to translate the element upward by 50%. The sample code is as follows:

div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

Summary:

The above are several ways to achieve centering in CSS. They each have their own advantages and disadvantages. You can choose the appropriate method to achieve the goal in different situations. At the same time, modern browsers are getting better and better in supporting CSS3, and using CSS3’s flexbox layout is also a very convenient choice.

The above is the detailed content of How to set centering in css? A brief analysis of common methods. For more information, please follow other related articles on the PHP Chinese website!

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