Layout CSS - alinhamento horizontal e vertical


Índice

    Mostrar índice

Center elements
horizontally and vertically


Centralizar elementos de alinhamento

Para centralizar horizontalmente um elemento de bloco (como <div>), use margin: auto;

Definir a largura do elemento evitará que ele se estenda até o bordas do seu recipiente.

O elemento ocupará então a largura especificada e o espaço restante será dividido igualmente entre as duas margens:

This div element is centered.

Exemplo

.center
{
  margin: auto;
   
width: 50%;
   
border: 3px solid green;
  padding: 10px;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center {
  margin: auto;
  width: 60%;
  border: 3px solid #73AD21;
  padding: 10px;
}
</style>
</head>
<body>

<h2>Center Align Elements</h2>
<p>To horizontally center a block element (like div), use margin: auto;</p>

<div class="center">
  <p>Hello World!</p>
</div>

</body>
</html>


Observação: o alinhamento central não terá efeito se a propriedade largura não estiver definida (ou definido como 100%).


Texto de alinhamento centralizado

Para centralizar apenas o texto dentro de um elemento, use text-align: center;

This text is centered.

Exemplo

.center {
  text-align: center;
  
border: 3px solid green;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center {
  text-align: center;
  border: 3px solid green;
}
</style>
</head>
<body>

<h2>Center Text</h2>

<div class="center">
  <p>This text is centered.</p>
</div>

</body>
</html>


Dica: para obter mais exemplos de como alinhar texto, consulte o capítulo Texto CSS.



Centralizar uma imagem

Para centralizar uma imagem, defina as margens esquerda e direita como auto e transforme-a em um elemento block:

Paris

Exemplo

img
{
  display: block;
    margin-left: auto;
  margin-right: auto;
  width: 40%;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
</style>
</head>
<body>

<h2>Center an Image</h2>
<p>To center an image, set left and right margin to auto, and make it into a block element.</p>

<img src="paris.jpg" alt="Paris" style="width:40%">

</body>
</html>



Alinhar à esquerda e à direita - usando a posição

Um método para alinhar elementos é usar position: absoluto;:

In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.

Exemplo

.right
{
  position: absolute;
   
right: 0px;
  width: 300px;
  border: 3px solid #73AD21;
  padding: 10px;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.right {
  position: absolute;
  right: 0px;
  width: 300px;
  border: 3px solid #73AD21;
  padding: 10px;
}
</style>
</head>
<body>

<h2>Right align with the position property</h2>

<p>An example of how to right align elements with the position property:</p>

<div class="right">
  <p>In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</p>
</div>

</body>
</html>


Observação: Elementos posicionados de forma absoluta são removidos do fluxo normal e podem se sobrepor a elementos.


Alinhar à esquerda e à direita - usando float

Outro método para alinhar elementos é usar a propriedade float:

Exemplo

.right
{
  float: right;
   
width: 300px;
  border: 3px solid #73AD21;
  padding: 10px;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.right {
  float: right;
  width: 300px;
  border: 3px solid #73AD21;
  padding: 10px;
}
</style>
</head>
<body>

<h2>Right align with the float property</h2>

<p>An example of how to right align elements with the float property:</p>

<div class="right">
  <p>In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</p>
</div>

</body>
</html>



O hack do clearfix

Nota: Se um elemento for mais alto que o elemento que o contém e flutuar, ele transbordará para fora de seu contêiner. Você pode usar o "clearfix hack" para corrigir isso (veja o exemplo abaixo).

Sem Clearfix

Com Clearfix

Então podemos adicionar o hack clearfix ao elemento que contém para corrigir este problema:

Exemplo

 .clearfix::after {
  content: "";
  clear: both;
  
  display: table;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
div {
  border: 3px solid #4CAF50;
  padding: 5px;
}

.img1 {
  float: right;
}

.img2 {
  float: right;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
</style>
</head>
<body>

<h2>Without Clearfix</h2>

<p>This image is floated to the right. It is also taller than the element containing it, so it overflows outside of its container:</p>

<div>
  <img class="img1" src="pineapple.jpg" alt="Pineapple" width="170" height="170">
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet...
</div>

<h2 style="clear:right">With New Modern Clearfix</h2>
<p>Add the clearfix hack to the containing element, to fix this problem:</p>

<div class="clearfix">
  <img class="img2" src="pineapple.jpg" alt="Pineapple" width="170" height="170">
  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet...
</div>

</body>
</html>



Centralizar verticalmente - usando preenchimento

Existem muitas maneiras de centralizar um elemento verticalmente em CSS. Uma solução simples é usar o preenchimento superior e inferior:

I am vertically centered.

Exemplo

.center {
  padding: 70px 0;
  border: 3px solid 
green;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center {
  padding: 70px 0;
  border: 3px solid green;
}
</style>
</head>
<body>

<h2>Center vertically with padding</h2>

<p>In this example, we use the padding property to center the div element vertically:</p>

<div class="center">
  <p>I am vertically centered.</p>
</div>

</body>
</html>


Para centralizar verticalmente e horizontalmente, use padding e text-align: center:

I am vertically and horizontally centered.

Exemplo

.center {
  padding: 70px 0;
  border: 3px solid 
green;
  text-align: center;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center {
  padding: 70px 0;
  border: 3px solid green;
  text-align: center;
}
</style>
</head>
<body>

<h2>Center with padding and text-align</h2>

<p>In this example, we use padding and text-align to center the div element both vertically and horizontally:</p>

<div class="center">
  <p>I am vertically and horizontally centered.</p>
</div>

</body>
</html>



Centralizar verticalmente - usando line-height

Outro truque é usar a propriedade line-height com um valor igual para a propriedade height:

I am vertically and horizontally centered.

Exemplo

.center {
  line-height: 200px;
  height: 200px;
  border: 3px solid green;
  text-align: center;
}
/* If the text has multiple lines, add the 
following: */
.center p {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center {
  line-height: 200px;
  height: 200px;
  border: 3px solid green;
  text-align: center;
}

.center p {
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}
</style>
</head>
<body>

<h2>Center with line-height</h2>

<p>In this example, we use the line-height property with a value that is equal to the height property to center the div element:</p>

<div class="center">
  <p>I am vertically and horizontally centered.</p>
</div>

</body>
</html>



Centralizar verticalmente - usando posição e transformação

Se preenchimento e altura da linha não são opções, outra solução é usar o posicionamento e a propriedade transform:

I am vertically and horizontally centered.

Exemplo

.center { 
  height: 200px;
  position: relative;
  border: 3px solid green; 
}

.center p {
  margin: 0;
  
position: absolute;
  top: 50%;
  
left: 50%;
  transform: translate(-50%, -50%);
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center { 
  height: 200px;
  position: relative;
  border: 3px solid green; 
}

.center p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
</style>
</head>
<body>

<h2>Center with position and transform</h2>

<p>In this example, we use positioning and the transform property to vertically and horizontally center the div element:</p>

<div class="center">
  <p>I am vertically and horizontally centered.</p>
</div>

</body>
</html>


Dica: você aprenderá mais sobre a propriedade transform em nossas Transformações 2D Capítulo.


Centralizar verticalmente - usando Flexbox

Você também pode usar o flexbox para centralizar as coisas. Observe que o flexbox não é compatível com o IE10 e versões anteriores:

I am vertically and horizontally centered.

Exemplo

 .center {
  display: flex;
  justify-content: center;
  
  align-items: center;
  height: 200px;
  border: 3px solid 
  green; 
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  border: 3px solid green; 
}
</style>
</head>
<body>

<h2>Flexbox Centering</h2>

<p>A container with both the justify-content and the align-items properties set to <em>center</em> will align the item(s) in the center (in both axis).</p>

<div class="center">
  <p>I am vertically and horizontally centered.</p>
</div>

</body>
</html>


Dica: você aprenderá mais sobre o Flexbox em nosso capítulo CSS Flexbox.