Ich übersehe hier wohl irgendwas sehr offensichtliches, also könnt ihr mir sicherlich relativ problemlos weiterhelfen. Trotzdem brauche ich hilfe bei folgendem:
das problem bei folgendem code sind righttd und lefttd.
Denn wenn ich in bannertd mehr als das erste google logo habe, dann stimmt die width von left trotz angabe in opera und IE nicht mehr. Entfernt man alles ausser das erste google logo, so funktioniert es wieder.
Hilfe?
danke.
PHP-Code:
<html>
<head>
<title>Hey there</title>
<style>
.main {
text-align:center;
margin: 3px auto;
}
.maintable {
width:750px;
margin: 3px auto;
}
.bannertd {
text-align:center;
margin: 0px auto;
}
.banner {
float:left;
}
.sponsoredtd {
text-align:center;
margin: 0px auto;
}
.lefttd {
width:150px;
}
</style>
</head>
<body>
<div class="main">
<table class="maintable" border="1">
<tr>
<td class="bannertd" colspan="2">
<img src="http://www.google.com/intl/en_ALL/images/logo.gif" class="banner" width=150>
test:<br>
<img src="http://www.google.com/intl/en_ALL/images/logo.gif" class="sponsoredbanner" width="450" height="60" border="1">
</td>
</tr>
<tr>
<td class="lefttd">
left
</td>
<td class="righttd">
right
</td>
</tr>
<tr>
<td colspan="2">
2
</td>
</tr>
<tr>
<td colspan="2">
3
</td>
</tr>
</table>
</div>
</body>
</html>
Denn wenn ich in bannertd mehr als das erste google logo habe, dann stimmt die width von left trotz angabe in opera und IE nicht mehr. Entfernt man alles ausser das erste google logo, so funktioniert es wieder.
Hilfe?
danke.
Kommentar