> 웹 프론트엔드 > 프런트엔드 Q&A > CSS에서 테이블 색상을 설정하는 방법

CSS에서 테이블 색상을 설정하는 방법

藏色散人
풀어 주다: 2023-01-04 09:35:33
원래의
3828명이 탐색했습니다.

CSS에서 테이블 색상을 설정하는 방법: 먼저 설정해야 하는 테이블 코드 내용을 찾아서 연 다음 색상 속성을 통해 테이블의 텍스트 색상을 설정합니다. 배경 속성.

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
css
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿