I'm trying to make a round button with a plus sign in it. I want the plus sign to be big, but even when there's 0 padding, the plus sign cannot be placed in the middle,, can you help me get rid of the spacing on top of the plus sign?
#plusbtn {
width: 35px;
height: 35px;
border-bottom: solid 2px #4F3C35;
background-color:#377BB5;
color:white;
border-radius:50%;
font-size:35px;
display:inline-block;
margin: 15px 10px;
position: relative;
vertical-align: top;
}
<div>
<button id="plusbtn">+</button>
</div>