I want to make these 2 text boxes have no space in between them
I tried using a container with the code display:flex; in it but that made the text uncentered.
body {
background-color: lightblue;
}
h2 {
color: navy;
font-size: 200px;
text-align: center;
}
<h1 style="text-align:center">The Mains Are</h1>
<h2>BACK!</h2>
4
Answers
First you can remove the margin and padding of h1 and h2, but if it’s not close enough you can wrap those two titles in a div and set the line-height to whatever you want
You can achieve this by giving the
h2
element amargin:0
. If you want to close the gap a little more, you can get it as close as you want by giving a negativemargin-top
value.use flexBox