Is any way to remove empty space in top of the h
tags?
h1 {
border: 1px solid;
margin: 0;
padding: 0;
line-height: normal;
}
<h1>Test Title yg</h1>
You should be looking for :
h1 {
border: 1px solid;
margin: 0;
padding: 0;
line-height: 1.4rem;
padding-bottom: 8px;
}
<h1>Test Title yg</h1>
Hope this is what you are looking for!
But this space is needed for HTML special characters.
Please have a look at HTML characters here