how to center text of button using css

I can’t center the text inside the button, tried margin – 0, padding -0 html code –

.del{     height: 30px;     width: 30px;     text-align: center;     font-size: large;     border: none;     color: #eee;     background-color:  rgb(187, 141, 81);     border-radius: 30px; }
 <button class="del btn btn-sm" type="submit">x</button>

Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.