MrRobotBDR
New Coder
What is responsible for all the whitespace around the text in this <h1>?
It's so big it's almost acting as a margin-top.
View: https://imgur.com/bTUg9uR
It's so big it's almost acting as a margin-top.
View: https://imgur.com/bTUg9uR
HTML:
<section class="contact-hero">
<h1>Contact us...</h1>
<p>Write us a brief, ask us a question or tell us what you’re looking for in your own words.</p>
</section>
SCSS:
.contact-hero {
width: 100%;
text-align: center;
h1 {
font-family: $ff-h1;
font-size: 128px;
margin-bottom: 30px;
}
p {
font-family: $ff-p;
color: $off-black-grey-p;
margin-bottom: 70px;
}
}
Last edited by a moderator: