Answers for "how to display buttons in center in html"

17

html center button

button{
    /*Change the width as much as you like, but make sure 
    margin-left and margin-right + width = 100%*/
    width:50%;
    margin-left:25%;
    margin-right:25%;
}
Posted by: Guest on April-29-2020
0

how to align a button to the center in css

/* in HTML, the buttons id is example*/
#example{
	text-align: center;
}
/* If that doesn't work, put a div and center the div*/

#example2{
  text-align: center;
}
Posted by: Guest on March-09-2022

Code answers related to "how to display buttons in center in html"

Browse Popular Code Answers by Language