Avatar of hidrau
hidrauFlag for Brazil

asked on 

How to center my buttons and give them space among them?

Hello guys

I am studying html and css.

I got a code for buttons and I added in my page.

But I am having troubles to center them in horizontal form and give them certain space among them.

could you help me?

this is the link:

http://www.teachmenow.com.br/guardasol/index.html

regards
Alexandre
CSSHTML

Avatar of undefined
Last Comment
Julian Hansen
Avatar of Olaf Doschke
Olaf Doschke
Flag of Germany image

Without looking at your site, the solution is to center a div and within that div use a flexbox with justify-content: space-between.
See https://css-tricks.com/equidistant-objects-with-css/

https://jsfiddle.net/zenxc7tq/ demos this.

Bye, Olaf.
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Firstly - your container botaocss has a defined width of 500px - this is going to limit the space for the buttons so remove the width or make it bigger
#botaocss {
	font-family: Arial, Trebuchet MS;
	font-size: 20px;
	/* width: 500px; */ /* <== CHANGE OR REMOVE THIS */
}

Open in new window


Secondly, your buttons are defined as display: block which will force them on a new line - try defining them as inline-block as follows
#botaocss a {
	display: inline-block; /* <=== CHANGE THIS */
	background: #70B02C;
	color: #FFFFFF;
	text-shadow: 0px 1px 0px #111111;
	text-align: center;
	border: solid 1px #538C17;
	border-radius: 5px;
	box-shadow: 0px 2px 3px #A9A9A9;
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 0px;
	text-decoration: none;
}

Open in new window

Avatar of hidrau
hidrau
Flag of Brazil image

ASKER

it didn't do what I want to do

I want to place the three buttons in the center of my div, each button bellow the other and in the center of my container.

I did what Julian asked me to do, but it didn't give the result, please, take a look at.

I need my buttons with 500px

thanks
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
SOLUTION
Avatar of Olaf Doschke
Olaf Doschke
Flag of Germany image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
Avatar of hidrau
hidrau
Flag of Brazil image

ASKER

thanks a lot for your help
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

You are welcome.
HTML
HTML

HTML (HyperText Markup Language) is the main markup language for creating web pages and other information to be displayed in a web browser, providing both the structure and content for what is sent from a web server through the use of tags. The current implementation of the HTML specification is HTML5.

62K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo