1

This is what I have so far:

enter image description here

Though I'd like it to look more like this:

enter image description here

What is the CSS for moving a Button down?

zx485
  • 28,498
  • 28
  • 50
  • 59
  • Hi welcome to SO! "Questions seeking code help must include the shortest code necessary to reproduce it in the question itself preferably in a [Stack Snippet](https://blog.stackoverflow.com/2014/09/introducing-runnable-javascript-css-and-html-code-snippets/). See How to [create a Minimal, Complete, and Verifiable](http://stackoverflow.com/help/mcve) example." – rawnewdlz Oct 29 '18 at 19:18

1 Answers1

0

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;
    }

fiddle

petitkriket
  • 154
  • 4
  • 19