width på background image
hvordan kan jeg sette background-image: url("titlebar.gif"); width til 100% ??altså på samme måde som hvis man skriver <img src="...gif" width="100%">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Window test</title>
<style type="text/css">
<!--
.TitleBar {
font: Caption;
color: CaptionText;
padding: 3px;
margin: 0px;
cursor: default;
width:100%;
height:18px;
background-image: url("titlebar.gif");
}
//-->
</style>
</head>
<body>
<table border="0" width="400" cellpadding="0" cellspacing="0">
<tr>
<td class="TitleBar">caption</td>
</tr>
<tr>
<td>tekst</td>
</tr>
</table>
</body>
</html>
