2016-07-31 34 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; 
} 
このコードを使用します
関連する問題