Answers for "button position change html"

CSS
12

Move button in CSS

<html>
   <head>
   </head>

   <body>
      <div style = "position:relative; left:80px; top:2px; background-color:yellow;">
         This div has relative positioning.
      </div>
   </body>
</html>
Posted by: Guest on May-17-2020
1

how to change the position of a button in css

#mainbutton {
  position: relative;
  bottom: 30px;
}
Posted by: Guest on November-25-2020

Browse Popular Code Answers by Language