This is what I have so far:
Though I'd like it to look more like this:
What is the CSS for moving a Button
down?
This is what I have so far:
Though I'd like it to look more like this:
What is the CSS for moving a Button
down?
If you meant changing the button position to center it vertically inside it's containing div, question has been answered here, use this on your button containing div :
.containerDiv {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
}