I have two lines where I want them to be right below each other so I put a line break between them. But after that, there is this huge gap in between the lines.
How do I keep the lines ("h8 adr" and "h8 no")separated but leave no space between the separation?
My code:
.adr {
border-style: solid;
border-width: 20px;
padding-top: 65px;
padding-bottom: 65px;
padding left: 65px;
padding-right: 65px;
font-size: 500%;
font-weight: bold;
text-align: center;
}
.no {
font-stretch: condensed;
font-size: 20px;
}
<h1 class='adr'>
A place
<br>
<h8 class='ad'>
4567 postal code An Address
</h8>
<br>
<h8 class='no'>
Phone: 123-456 789 Fax: 123-456 789
</h8>
</h1>
Take away the second
<br>and make.nohavedisplay: block: