2

I have tried to place my buttons in the middle, but I have no idea what to do, as I'm not the best at CSS.

I don't know, if I'm doing it right in my code, but I have tried to place it in the center.

What should I do to place my buttons in the Middle of the screen?

<style>
    body {

    background-image: url(http://1-background.com/images/silk/grey-silk-website-background.jpg);

    }

    .button {
        display:block;
        text-align:center;
    }

    h1{
         text-align: center;
    }
    .remove{
        color: red;
        align-items: center;
    }

    .create{
        color: green;
        align-items: center;
    }

    .test{
        color: blue;
        align-items: center;
    }

</style>

<body>
    <form>
        <h1>
            <select id="mySelect" style="width:400px" size="10"  multiple>
                <option id=" hello">hello</option>

            </select>
            <br />
            <input type="text" name="name" value="text " style="width:350px" />
        </h1> 
    </form>
    <br>       
    <la class=" remove"><button onclick="myRemove()" style=" align-items: center;  width: 225px"><h2 class="remove"><img id="hi" src="http://outlooksettings.com/wp-content/uploads/2014/12/remove-md.png" width="40"> Remove</h2></button>
    </la>

    <la class="create"><button type="button" onclick="myCreate()"  style=" align-items: center; width: 225px"><h2  class="create"><img id="hi" src="https://cdn0.iconfinder.com/data/icons/large-glossy-icons/512/Create.png" width="40">Create</h2></button>
    </la>

    <la class="test"><button type="button" onclick="test()" style=" align-items: center; width: 225px"><h2 style="width:80px" class="test"><img id="hi" src="https://lh4.ggpht.com/lUcLbewm2mffnhc1_BbZYi5zjEXAzfeYf73cg2SXjFDX3_xNnHGUMkSRdh86TN8HqcSq7Qr3vA=w512" width="40">File</h2></button>
    </la>
Persijn
  • 14,624
  • 3
  • 43
  • 72
Mikkel
  • 29
  • 6
  • 1
    what's an `` tag? – Aaron Jun 26 '15 at 09:41
  • @Aaron I think Mikkel meant to use `
  • ` (or less likely, a `
  • – Armfoot Jun 26 '15 at 10:12
  • its an mistake, i know there is an
  • tag. I think i can delete it. because i have the

    .

  • – Mikkel Jun 26 '15 at 10:38