Create a Vertical Button Group with CSS


You can try to run the following code to create a vertical button group

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         .mybtn .button {
            background-color: orange;
            border: 1px solid green;
            width: 120px;
            color: white;
            font-size: 14px;
            padding: 10px;
            text-align: center;
            text-decoration: none;
            display: block;
         }
      </style>
   </head>
   <body>
      <div class = "mybtn">
         <button class = "button">Result</button>
         <button class = "button">Result</button>
         <button class = "button">Result</button>
         <button class = "button">Result</button>
      </div>
   </body>
</html>

Updated on: 24-Jun-2020

919 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements