Suchfunktion
Erfahrenes Mitglied
Hallo,
ich habe eine Tabelle die soll im endeffekt so aussehen:
<<click>>
So sieht es auch im Interneexplorer aus,
aber im Mozillla, Opera, usw. sieht es so aus:
<<click>>
Hier mein Tabellen-Source:
Und hier mein CSS-Zeug:
Kann mir jemand sagen wie ich es bewerkstellige, dass es im Mozilla (etc.) genauso aussieht wie im IE?
Danke.
ich habe eine Tabelle die soll im endeffekt so aussehen:
<<click>>
So sieht es auch im Interneexplorer aus,
aber im Mozillla, Opera, usw. sieht es so aus:
<<click>>
Hier mein Tabellen-Source:
HTML:
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body class="body">
<table bordercolor="#e6c8ca" bordercolordark="#e6c8ca" bordercolorlight="#e6c8ca" width="80%" border="2" class="table" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="44" height="43" id="date">
<div class="DayOfMonth">02</div>
<div class="DayOfWeek">So</div>
</td>
<td width="244" valign="middle" id="info">
<div class="time">20:30</div>
<div class="title">Babytalk</div>
<div class="info">
<span class="place">Dinner Theatre </span>
<span class="verkauf">| FREIER VERKAUF </span>
<span class="abo"></span>
</div>
</td>
<td width="55" valign="top" id="premiere">Premiere</td>
<td width="1" valign="top"><!--DWLayoutEmptyCell--> </td>
<td width="359" valign="top" id="bla"><!--DWLayoutEmptyCell--> </td>
</tr>
<tr height="5" id="emptyrow"> </tr>
</table><table bordercolor="#e6c8ca" bordercolordark="#e6c8ca" bordercolorlight="#e6c8ca" width="80%" border="2" class="table" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="44" height="43" id="date">
<div class="DayOfMonth">05</div>
<div class="DayOfWeek">Mi</div>
</td>
<td width="244" valign="middle" id="info">
<div class="time">20.00</div>
<div class="title">Kleiner Mann, was nun?</div>
<div class="info">
<span class="place">Große Bühne </span>
<span class="verkauf">| FREIER VERKAUF </span>
<span class="abo">| Abo Mi</span>
</div>
</td>
<td width="55" valign="top" id="premiere"></td>
<td width="1" valign="top"><!--DWLayoutEmptyCell--> </td>
<td width="359" valign="top" id="bla"><!--DWLayoutEmptyCell--> </td>
</tr>
<tr height="5" id="emptyrow"> </tr>
</table><font size="1"> </font>
</body>
</html>
Und hier mein CSS-Zeug:
Code:
.body {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
.table {
background-color: #e6c8ca;
table-layout: auto;
}
TD#date {
/*width: 50px;*/
text-align: center;
padding-left: 0px;
padding-right: 0px;
}
.DayOfMonth {
font-weight: bold;
font-size: 24px;
color: #86141c;
}
.DayOfWeek {
font-weight: bold;
font-size: 10px;
}
.time {
padding-left: 5px;
font-size: 10px;
background-color: #ffffff;
border: White;
}
.title {
padding-left: 5px;
font-size: 11px;
font-weight: bold;
background-color: #ffffff;
border: White;
padding-top: 0;
}
.info {
padding-left: 5px;
font-size: 11px;
background-color: #ffffff;
border: White;
padding-top: 0;
}
.place {
font-size: 10px;
background-color: #ffffff;
padding-top: 0;
}
.verkauf {
font-size: 10px;
background-color: #ffffff;
}
.abo {
font-size: 10px;
background-color: #ffffff;
}
TD#premiere {
text-decoration: blink;
background-color: white;
padding-left: 5px;
border: White;
border: 0;
color: #86141c;
padding-top: 5px;
font-size: 10px;
}
TD#info {
background-color: white;
padding-left: 5px;
border: White;
border: 0;
padding: 0;
}
TD#info_ext {
background-color: white;
padding-left: 5px;
border: White;
border-left: 1px;
/*border: 0;*/
padding: 0;
}
TD#bla {
background-color: white;
padding-left: 5px;
border: White;
border-left: 1px;
/*border: 0;*/
padding: 0;
}
TR#emptyrow {
border: 0;
font-size: 2px;
}
Kann mir jemand sagen wie ich es bewerkstellige, dass es im Mozilla (etc.) genauso aussieht wie im IE?
Danke.