Lid |
|
Hallo,
Zoals gewoonlijk wijkt er weer een browser af.
Ik wil graag van deze afbeelding: http://www2.sha...nt/vak.png
een groot vak maken in html en css om in te kunnen typen.
Dit werkt ook: http://www2.shamrock-maastricht.nl/test.php
Dit werkt in Google Chrome, Mozilla Firefox, Opera, maar niet in IE
Dit is mijn css code:
<style>
.content-lb { background: url('images/content/vak.png') no-repeat left top; }
.content-b { height: 30px; background: url('images/content/vak.png'); background-position: -100px 0px; background-repeat: repeat-x; -moz-background-size: 180% 204px; background-size: 180% 204px; }
.content-rb { background: url('images/content/vak.png') no-repeat right top; }
.content-l { width: 25px; background: url('images/content/vak.png') left; background-repeat: repeat-x; -moz-background-size: 204px 20000px; background-size: 204px 20000px; }
.content-m { height: 30px; background: url('images/content/vak.png'); background-position: -50px -3200px; background-repeat: repeat-x; -moz-background-size: 180% 20000px; background-size: 180% 20000px; }
.content-r { width: 25px; background: url('images/content/vak.png') right; background-repeat: repeat-x; -moz-background-size: 204px 20000px; background-size: 204px 20000px; }
.content-lo { background: url('images/content/vak.png') no-repeat left bottom; }
.content-ro { background: url('images/content/vak.png') no-repeat right bottom; }
.content-o { height: 24px; background: url('images/content/vak.png'); background-position: -100px -180px; background-repeat: repeat-x; -moz-background-size: 180% 204px; background-size: 180% 204px;}
.content-m1 {height: 30px; background: url('images/content/vak.png'); background-position: -50px -3200px; background-repeat: repeat-x; -moz-background-size: 180% 20000px; background-size: 180% 20000px; }
</style>
<style> .content-lb { background: url('images/content/vak.png') no-repeat left top; } .content-b { height: 30px; background: url('images/content/vak.png'); background-position: -100px 0px; background-repeat: repeat-x; -moz-background-size: 180% 204px; background-size: 180% 204px; } .content-rb { background: url('images/content/vak.png') no-repeat right top; } .content-l { width: 25px; background: url('images/content/vak.png') left; background-repeat: repeat-x; -moz-background-size: 204px 20000px; background-size: 204px 20000px; } .content-m { height: 30px; background: url('images/content/vak.png'); background-position: -50px -3200px; background-repeat: repeat-x; -moz-background-size: 180% 20000px; background-size: 180% 20000px; } .content-r { width: 25px; background: url('images/content/vak.png') right; background-repeat: repeat-x; -moz-background-size: 204px 20000px; background-size: 204px 20000px; } .content-lo { background: url('images/content/vak.png') no-repeat left bottom; } .content-ro { background: url('images/content/vak.png') no-repeat right bottom; } .content-o { height: 24px; background: url('images/content/vak.png'); background-position: -100px -180px; background-repeat: repeat-x; -moz-background-size: 180% 204px; background-size: 180% 204px;} .content-m1 {height: 30px; background: url('images/content/vak.png'); background-position: -50px -3200px; background-repeat: repeat-x; -moz-background-size: 180% 20000px; background-size: 180% 20000px; } </style>
html:
<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr>
<td class='content-lb' align='right'> </td>
<td class='content-b' align='right'>
<table width='100%' border='0' cellspacing='5' cellpadding='0'>
<tr>
<td><font style='size: 4; font-weight: bold;'>'.$titel.'</td>
</tr>
</table>
</td>
<td class='content-rb' align='right'> </td>
</tr>
<tr>
<td colspan='3'>
<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr>
<td class='content-l'> </td>
<td class='content-m'><p><span class="content-m1"><font color='#FFFFFF'>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
'. $insert .'<BR>
</font></span></p>
<p> </p></td>
<td class='content-r'> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td class='content-lo' > </td>
<td class='content-o' > </td>
<td class='content-ro' > </td>
</tr>
</table>
<table width='100%' border='0' cellspacing='0' cellpadding='0'> <td class='content-lb' align='right'> </td> <td class='content-b' align='right'> <table width='100%' border='0' cellspacing='5' cellpadding='0'> <td><font style='size: 4; font-weight: bold;'>'.$titel.' </td> <td class='content-rb' align='right'> </td> <table width='100%' border='0' cellspacing='0' cellpadding='0'> <td class='content-l'> </td> <td class='content-m'><p><span class="content-m1"><font color='#FFFFFF'> <td class='content-r'> </td> <td class='content-lo' > </td> <td class='content-o' > </td> <td class='content-ro' > </td>
Ik heb al gezocht maar kan niets vinden (alleen dat het niet werkt, maar geen oplossing)...
Weet iemand misschien hoe ik dit ook in IE goed krijg?
Vriendelijk bedankt
|