How i can remove the space between strings "Text 1" and "its simple"? I need to create whitespace in only 10 pixel, i.e. via margin-top: 10px;. But when i use margin-top: 10px;, total space is 10 pixel + shift.
In my opinion, the white space are formed directly by the margin of the font. With what element can i change the size of this whitespace?
* { box-sizing: border-box; margin: 0; padding: 0; } .title { font-family: Roboto; font-size: 41px; font-weight: 900; text-transform: uppercase; color: #f9bf3b; text-align: center; } .simple .title_big { font-family: Roboto; font-size: 80px; font-weight: 900; text-transform: uppercase; color: #000000; text-align: center; } <h1 class="title">Text 1</h1> <div class="simple"> <h2 class="title_big">its simple!</h2> <div class="line"></div> </div> <h2 class="title">Text 2</h2>