I want to center h1
next to my img
but I can't because of img
's padding https://prnt.sc/sqdd73 it's what I want any soltuion?
<header>
<div class="logo">
<img src="imgs/logo.svg" alt="Gori News | LOGO"><h1>Gori News</h1>
</div>
</header>
header{
width:100%;
max-width: 1800px;
height:99px;
background:#FFF;
margin:0 auto;
background: #FFFFFF;
box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.13);
border-radius: 14px;
}
header h1{
font-family: Ropa Sans;
font-style: normal;
font-weight: normal;
font-size: 70px;
line-height: 75px;
/* identical to box height */
color: #212121;
text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
display: inline-block;
}
header img{
margin:12px;
}