I\'m learning Front end development and I\'m trying to code my first site using bootstrap. I got stuck on a pretty simple thing I guess. How do I center a text within a button
To center the text within the button. Use this code.
.btn-work{ text-align: center; }
To center the button, use a parent div to align it to center.
CSS:
div.parentElement{text-align: center;}
.btn-work{ display: inline-block; }
HTML:
Full CSS:
div.parentElement{text-align: center;}
.btn-work {
width: 250px;
height: 50px;
margin: 0 auto;
padding: 0;
display: inline-block;
line-height: 50px;
text-align: center;
}