Thread css: div zwischen 2 tabellen: firefox: nicht ok (9 answers)
Opened by esskar at 2005-10-20 01:46

pKai
 2005-10-21 02:47
#24626 #24626
User since
2005-02-18
357 Artikel
BenutzerIn
[default_avatar]
OK, durch das <base>, was ich drin gelassen hatte, hatte er das CSS garnicht gefunden. Daher hatte ich immer das selbe gesehen.

Minimal(?)-Beispiel um das Problem zu illustrieren:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>

<title>Titel</title>

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >

<style type="text/css"><!--
table
{
width: 100%;
}

#navigation {
float: left;
}
//--></style>
</head>

<body>

<table>
<tr>
<td>
<div>

<table border="1">
<tr>
<td>&nbsp;</td>
</tr>
</table>

<div id="navigation">

Links

</div>

<table border="1">
<tr>
<td>&nbsp;</td>
</tr>
</table>

</div>
</td>
</tr>
</table>

</body>
</html>

Die Frage ist halt, was "width:100%" hier bedeutet. Jemand der das Box-Modell besser als ich kennt, sollte das vielleicht beantworten können?!
I sense a soul in search of answers.

View full thread css: div zwischen 2 tabellen: firefox: nicht ok