why doesn’t the vertical align :middle work in my code even that i changed the display into inlineblock
shouldnt the xo text be in the middle vertically of that container
when does it actually work?
<!DOCTYPE html>
<html>
<style>
.container {
height: 100px;
background-color: pink;
}
.centered {
display: inline-block;
vertical-align: middle;
}
</style>
<body>
<div class="container">
<p class="centered">xo</p>
</div>
</body>
</html>
New contributor
Tyyu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.