CSS에서 테이블 색상을 설정하는 방법: 먼저 설정해야 하는 테이블 코드 내용을 찾아서 연 다음 색상 속성을 통해 테이블의 텍스트 색상을 설정합니다. 배경 속성.
이 기사의 운영 환경: Windows7 시스템, HTML5&&CSS3 버전, Dell G3 컴퓨터.
CSS 테이블 색상 설정
테이블 색상 설정은 매우 간단하며 텍스트 색상 설정과 똑같습니다.
CSS는 color 속성을 통해 테이블의 텍스트 색상을 설정하고, background 속성을 통해 테이블의 배경색을 설정합니다.
<span style="font-size:24px;"><html> <head> <title> 年度收入 </title> <style> <!-- body{ background-color:#ebf5ff; margin:0px; padding:4px; text-align:center; } .datalist{ color:#0046a6; background-color:#d2e8ff; font-family:Arial; } .datalistcaption{ font-size:18px; font-weight:bold; } .datalistth{ color:#003e7e; background-color:#7bb3ff; } --> </style> </head> <body> <tablesummary="This table shows the yearly income for years 2004 through2007" border="1"> <caption>年度收入2004-2007</caption> <tr> <th></th> <thscope="col">2004</th> <thscope="col">2005</th> <thscope="col">2006</th> <thscope="col">2007</th> </tr> <tr> <thscope="row">捐款</th> <td>11.980</td> <td>12.650</td> <td>9.700</td> <td>10.600</td> </tr> <tr> <thscope="row">拨款</th> <td>11.980</td> <td>12.650</td> <td>9.700</td> <td>10.600</td> </tr> <tr> <thscope="row">投资</th> <td>11.980</td> <td>12.650</td> <td>9.700</td> <td>10.600</td> </tr> <tr> <thscope="row">募捐</th> <td>11.980</td> <td>12.650</td> <td>9.700</td> <td>10.600</td> </tr> <tr> <thscope="row">销售</th> <td>11.980</td> <td>12.650</td> <td>9.700</td> <td>10.600</td> </tr> </table> </body> </html></span>
이때 페이지의 배경색, 테이블의 배경색, 행과 열의 이름 색상, 글꼴이 모두 변경된 것을 볼 수 있습니다. 이러한 설정은 와 완전히 동일합니다. 텍스트의 CSS 설정과 페이지 배경의 설정.
【추천 학습: css 동영상 튜토리얼】
위 내용은 CSS에서 테이블 색상을 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!