Answers for "html align div vertically"

CSS
2

css center div vertically

/* center vertically */
/* No Flexbox */
.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}



/* With Flexbox */

.parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
Posted by: Guest on December-16-2020
-1

vertical align into div

#parent {position: relative;}

#child {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    height: 30%;
    margin: auto;
}
Posted by: Guest on July-03-2020
-1

vertical align div

HTML:
<div class="ext-box">
	<div class="int-box">
		<h2>Some txt</h2>
		<p>bla bla bla</p>
	</div>
</div>

CSS:
div.ext-box { display: table; height: 100%; width:100%;}
div.int-box { display: table-cell; vertical-align: middle; }
Posted by: Guest on March-17-2021

Code answers related to "html align div vertically"

Browse Popular Code Answers by Language