2016-07-31 7 views

답변

0

당신은 CSS 파일에 배경 색상 을 사용해야합니다

table { 
    background-color: #00bd72; 
} 

또는 HTML 태그

<table style="background-color: #00bd72"> 
... 
</table> 

체크 내가 당신을 위해 만든이 조각 내부

) 행운 학습 CSS

<html> 
 
    <body> 
 
    <h1>sample table</h1> 
 
    <table style="background-color: #00bd72"> 
 
     <tr> 
 
     <td>this is one cell</td> 
 
     <td>this is another cell</td> 
 
     </tr> 
 
     <tr> 
 
     <td>this is the second row</td> 
 
     <td>blah blah ...</td> 
 
     </tr> 
 
    </table> 
 
    </body> 
 
</html>

0

이 코드의 사용

table { 
    background-color: #ccc; 
} 
관련 문제