Help with CSS Please!
I am trying to figure out how to position buttons correctly using CSS Grid Layout, i have just been experimenting so far and can not figure out what I am doing wrong, all help is appreciated. My CSS #GUIContainer { display:grid; grid-template-columns: auto auto auto; } #Tokens{ grid-column-start:4 grid-column-end:4 background-color: #3deb54; /*Lime Green */ border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; } #Profile{ background-color: #3deb54; /* Lime Green */ border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } #Catalog{ background-color: #3deb54; /* Lime Green */ border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } My HTML <html> <head> <link rel="stylesheet" href="TradingPost.css"> <title>Trading Post</title> </head> <div id="GUIcontainer"> <button id="Catalog" height=20 width=20>Catalog</button> <button id="Tokens" height=20 width=20>Tokens</button> <button id="Profile" height=20 width=20>Profile</button> </div> </html> I have just been using w3schools for CSS, I am not very familiar with the language yet. Thank you for your help!