Monday, 21 August 2017

86.center align button in the middle


<div class="wrapper">
    <button class="button">Hello</button>
</div>

.wrapper {
    text-align: center;
}

.button {
    position: absolute;
    top: 50%;
}

No comments:

Post a Comment