- Joined
- Jan 28, 2017
- Messages
- 24
- Likes
- 17
- Degree
- 0
Hey all, I've got a question which is the complete opposite of my first one.
How could I use CSS to make a H1 look like body text? Basically the persons site has a certain aesthetic that would be ruined by making this phrase big and bold like your typical H1.
Would it literally be this?
<div class="h1-body"> <h1> H1 I want to look like body text </h1> </div>
.h1-body {
font-size: 12px;
font-weight: normal;
margin-top: 0px;
margin-bottom: 0px;
}
How could I use CSS to make a H1 look like body text? Basically the persons site has a certain aesthetic that would be ruined by making this phrase big and bold like your typical H1.
Would it literally be this?
<div class="h1-body"> <h1> H1 I want to look like body text </h1> </div>
.h1-body {
font-size: 12px;
font-weight: normal;
margin-top: 0px;
margin-bottom: 0px;
}