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

CSS로 버튼 그룹 만들기

<시간/>

다음 코드를 실행하여 버튼 그룹을 만들 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            color: black;
            background-color: orange;
            width: 120px;
            text-align: center;
            font-size: 15px;
            padding: 20px;
            float: left;
         }
         .mybtn {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <h2>Result</h2>
      <p>Click below for result:</p>
      <div class = "mybtn">
         <button class = "btn">Result</button>
         <button class = "btn">Result</button>
         <button class = "btn">Result</button>
         <button class = "btn">Result</button>
         <button class = "btn">Result</button>
      </div>
   </body>
</html>