PHP interesse |
|
Hallo allemaal ik heb de volgende code:
index.php
<table border="1" width="800px">
<tr id="cat"><td width="100%">Categorie</td></tr>
<tr id="info"><td width="50%">Bla</td><td width="50%">Bla</td></tr>
</table>
<table border="1" width="800px">
<tr id="cat"><td width="100%">Categorie</td></tr>
<tr id="info"><td width="50%">Bla</td><td width="50%">Bla</td></tr>
</table>
style.css
tr#cat
{
background: url(cat.gif);
height: 50px;
}
tr#info
{
background-color: orange;
height: 10px;
}
tr#cat { background: url(cat.gif); height: 50px; } tr#info { background-color: orange; height: 10px; }
mijn probleem is nu dat de breedte niet klopt.
Screenshot: http://img128.i...blefo9.png
Alvast bedankt!
|