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

CSS로 버튼의 배경색 변경

<시간/>

버튼의 배경색을 변경하려면 background-color를 사용하세요. 재산.

다음 코드를 실행하여 버튼의 배경색을 변경할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            background-color: yellow;
            color: black;
            text-align: center;
            font-size: 13px;
         }
      </style>
   </head>
   <body>
      <h2>Result</h2>
      <p>Click below for result:</p>
      <button class = "btn">Result</button>
   </body>
</html>