Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <html> <head> <title>Example</title> <!-- CSS --> <style> .myTableBg4 { width:100%; min-width: 260px; min-height:200px; text-align: center; background-image:url('/pix/samples/celebrate.gif'); background-repeat: no-repeat; background-position: center center; border: 1px solid black; } </style> </head> <body> <!-- HTML --> <table class="myTableBg4"> <tr> <th>Header</th> <th>Header</th> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> </table> </body> </html>
Preview