Answers for "html add button on the center of page"

9

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
-1

html center button

<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="UTF-8" />
      <title>Button align center</title>

      <style>
         .flex-parent {
            display: flex;
         }

         .jc-center {
Posted by: Guest on February-24-2021

Code answers related to "html add button on the center of page"

Browse Popular Code Answers by Language