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>