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

HTML에서 요소의 배경색을 표시하는 방법은 무엇입니까?


bgcolor 사용 HTML의 속성을 사용하여 요소의 배경색을 표시합니다. HTML 요소의 배경, 특히 페이지 본문 및 테이블 배경을 제어하는 ​​데 사용됩니다.

참고 − 이 속성은 HTML5에서 지원되지 않습니다.

예시

다음 코드를 실행하여 bgcolor 구현 방법을 배울 수 있습니다. HTML의 속성 -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Background Colors</title>
   </head>
   <body>
      <!-- Format 1 - Use color name -->
      <table bgcolor = "yellow" width = "100%">
         <tr>
            <td>
               This background is yellow
            </td>
         </tr>
      </table>

      <!-- Format 2 - Use hex value -->
      <table bgcolor = "#6666FF" width = "100%">
         <tr>
            <td>
               This background is sky blue
            </td>
         </tr>
      </table>

      <!-- Format 3 - Use color value in RGB terms -->
      <table bgcolor = "rgb(255,0,255)" width = "100%">
         <tr>
            <td>
               This background is green
            </td>
         </tr>
      </table>
   </body>
</html>