लंबवत बटन समूह बनाने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं
उदाहरण
<!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>