Change font size for H1, H2, H3 etc / responsive in Bootstrap?

Change font size for H1, H2, H3 etc / responsive in Bootstrap?

It’s quite easy, add this code to your main css file.

1
2
3
4
5
6
7
8
9
10
h1, h2, h3{
font-size:24px;
}
 
@media (min-width:768)
{   
h1, h2, h3{
font-size:14px;
}
}

Then try to resize the browser window to check the result.

Add a comment: