How do I center the Border Childs With text content in it?
I want to center my button like :
text1text
text2
Here’s what I tried:
.btn {
margin-bottom: 5rem;
width: fit-content;
border-radius: 2.5px;
border-style: solid;
border-width: 5px;
padding: 5px 15px 5px 15px;
text-align: center;
align-items: center;
align-content: center;
}
<h1 class="btn">testestest</h1>
<h1 class="btn">testest</h1>
none of the 3 methods worked 🙁
2
Answers
You would need to wrap your h1 tags inside another div element
This is one way to do it.
Good luck.
Just set your left and right margins to auto: