用CSS创建一个垂直按钮组

您可以尝试运行以下代码来创建垂直按钮组

示例

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

以上是 用CSS创建一个垂直按钮组 的全部内容, 来源链接: utcz.com/z/361152.html

回到顶部