Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

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>