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

CSS로 버튼의 글꼴 크기 변경

<시간/>

버튼의 글꼴 크기를 변경하려면 font-size를 사용하세요. 재산.

다음 코드를 실행하여 글꼴 크기를 변경할 수 있습니다.

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