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