HTML에서는 배경 속성을 사용하여 새 테이블의 배경을 설정할 수 있습니다. 테이블 요소에 "배경: 속성 값"만 설정하면 됩니다. background 속성은 하나의 명령문에서 모든 배경 속성을 설정합니다. 객체를 단색 배경색으로 설정하거나 이미지를 배경으로 설정할 수 있습니다.
이 튜토리얼의 운영 환경: Windows7 시스템, CSS3&&HTML5 버전, Dell G3 컴퓨터.
테이블의 색상 설정은 매우 간단하며 텍스트 색상 설정과 똑같습니다.
CSS는 background 속성을 통해 테이블의 배경을 설정합니다. color 속성을 통해 테이블의 텍스트 색상을 설정합니다.
예:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { background-color: #ebf5ff; margin: 0px; padding: 4px; text-align: center; } table { background: pink; color: white; } </style> </head> <body> <table border="1"> <tr> <th>NAME</th> <th>AGE</th> <th>NUMBER</th> </tr> <tr> <td rowspan="2">xm</td> <td>10</td> <td>2020</td> </tr> <tr> <td>3</td> <td>2021</td> </tr> <tr> <td>xf</td> <td>4</td> <td>2010</td> </tr> </table> </body> </html>
효과:
추천 학습: html 비디오 튜토리얼
위 내용은 HTML의 새 테이블에 배경을 추가하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!