center div horizontally vertically Archives - csshint - A designer hub https://csshint.com/tag/center-div-horizontally-vertically/ Tue, 22 Sep 2020 03:29:56 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.4 Center div horizontally and vertically https://csshint.com/center-div-horizontally-and-vertically/ Tue, 22 Sep 2020 03:29:26 +0000 http://csshint.com/?p=3867 In this post we are going to learn how to create center div horizontally and vertically Designed by Tipue. HTML [code language=”html”] <div class="center-div"></div> [/code] CSS [code language=”css”] body { background-color: #fcfcfc; } .center-div { position: absolute; margin: auto; top: 0; right: 0; bottom: 0; left: 0; width: 100px; height: 100px; background-color: #ccc; border-radius: 3px; […]

The post Center div horizontally and vertically appeared first on csshint - A designer hub.

]]>
In this post we are going to learn how to create center div horizontally and vertically Designed by Tipue.

Center div horizontally and vertically

Center div horizontally and vertically


HTML

[code language=”html”]

<div class="center-div"></div>
[/code]

CSS

[code language=”css”]
body
{
background-color: #fcfcfc;
}
.center-div
{
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100px;
height: 100px;
background-color: #ccc;
border-radius: 3px;
}

[/code]

Centering a div in a page, horizontally and vertically

The post Center div horizontally and vertically appeared first on csshint - A designer hub.

]]>