2016-07-31 5 views

Antwort

0

sollten Sie Hintergrund-Farbe in CSS-Datei verwenden:

table { 
    background-color: #00bd72; 
} 

oder in HTML-Tag

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

Überprüfung dieser Ausschnitt ich für Sie gerade gemacht;) Viel Glück lernen 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

Mit diesem Code

table { 
    background-color: #ccc; 
}