EdFredenburgh
Instructor
Another query! Can I place a background image in a table, above its background colour, in a set position, and without it repeating horizontally or vertically?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<style type="text/css">
#bgTable
{
background: #99f url(bgimage.gif) no-repeat top center ;
}
</style>
</head>
<body>
<table id="bgTable">
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>
</body>
</html>