html - Fit h1 div Height to Font Size -
i edited font size of h1 tag, looks height of div doesn't automatically fit it:
i tried manually setting height, div extends below instead of encasing text:
is there way make div fit font size?
here's css:
h1 { background-color: red;/* test */ font-family: lobster; font-size: 66px; font-style: normal; font-variant: normal; font-weight: 500; line-height: 26px; }
change:
h1{ background-color: red;/* test */ font-family: lobster; font-size: 66px; font-style: normal; font-variant: normal; font-weight: 500; line-height: 1;/*change here, don't put px @ end*/ }
see if works you.
Comments
Post a Comment