Sign in Registration
ruen

Vertical alignment on CSS, line-height and vertical-align middle

When laying out pages, it is often necessary to align the content of an element in the middle, both horizontally and vertically. While horizontal alignment is easy, vertical alignment can be difficult. Such alignment may be needed for various widgets on the site, for example, you need to align the picture strictly in the middle. Let's see how to solve the vertical alignment problem.

Previously, pages were typeset using tables (tabular layout), but now it is customary to use block layout based on div tags (block layout). This means that today it is better not to use tables for creating blocks, although aligning the contents of a table cell was quite simple before, which cannot be said about aligning in a div block. The valign attribute was actively used in table layout.

But there are solutions. Several techniques can be used to vertically align elements. For example, the line-height method . It is more suitable for aligning a line of text. This method works in all browsers. The value of 100px in this example is chosen arbitrarily, choose the one you need yourself, depending on your needs.

  & lt; div class = "parent">
& lt; div class = "child"> Line of text & lt; / div>
& lt; / div>

.child {
    line-height: 100px;
}
 

Another way is as follows. If the text-align: center CSS property is used to horizontally align the content of the block, then the vertical-align: middle property is used for vertical alignment. This property only works for inline elements, but can be adapted for block elements as well. This is the answer to the question why vertical-align: middle does not work, which can often be found on various forums and portals. You need to make a special display style for such a block using the display property, example below:

  & lt; div class = "parent">
& lt; div class = "child"> Content & lt; / div>
& lt; / div>

.parent {
display: table;
}
.child {
    display: table-cell;
    vertical-align: middle;
}
 

Thus, making vertical alignment in CSS is quite simple, the article shows the most popular methods.

Comments (0)
For commenting sign in or register.

Latest articles

Popular sections

Eqsash (Tools)

Android app - VK LAST USER ID, отучитель от зависимости и т.д.:
Available on Google Play

Amessage (Communication)

Login to the web version
Android app:
Available on Google Play

Share this

Subscribe to

YouTube

Books

IT notes - In simple language about the most necessary things (HTML, CSS, JavaScript, PHP, databases, Drupal, Bitrix, SEO, domains, security and more), PDF, 500 p.