Answers for "html div vertical align"

CSS
7

css vertical align middle

/* Flex */
.center {
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
/* Without Flex */
.parent {
  	position: relative;
}
.child {
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
}
Posted by: Guest on April-19-2021
15

css align items vertical center

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on October-31-2020
8

text vertical align css

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style type="text/css">
      div {
        display: table-cell;
        width: 250px;
        height: 200px;
        vertical-align: middle;
      }
    </style>
  </head>
  <body>
    <div>Vertically aligned text</div>
  </body>
</html>
Posted by: Guest on March-12-2020
0

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
0

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

Browse Popular Code Answers by Language