In the following snippet, the border outlines the block and not just around the text inside it:
.border {
font-size: 30px;
text-align: center;
border: red 2px solid;
}
<p class="border">Learn More!</p>
I have tried inline-block
and it does work, however, I want it centered on the page and align-text
/ align-items
does not work in that case.