CSS-Ersatz für eine Tabelle
David
- css
0 BiggiM
Hallo Forumianer,
Ich habe ein "Problem": ein <div> mit einer Tabelle.
Die Tabelle hat eine prozentuale Weite damit die Navigation auch schick aussieht :)
Gibt es eine Möglichkeit das gleiche Ergebnis ohne Tabelle hinzubekommen?
--------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css"><!--
body
{
.
.
.
#block_oben
{
background-color: #7EA2DC;
height: 40px;
margin: 0; padding: 0;
font-size: 13px; color: #FFFFFF; font-weight: bold;
text-align: center;
}
#block_oben table
{
width: 75%;
margin-left: 176px;
}
//--></style>
</head>
<body>
<div id="head">
<img src="headbild8.jpg" width="1021" height="86" alt="head-grafik">
</div>
<div id="block_oben">
<table>
<tr>
<td><a href="index.html" >Start</a></td>
<td><a href="einstufungstest.html">Einstufungstest</a></td>
<td><a href="lernen.html">Lernen</a></td>
<td><a href="schule.html">Schule</a></td>
<td><a href="aktuell.html">Aktuell</a></td>
</tr>
</table>
</div>
</body>
</html>
Hallo Forumianer,
Ich habe ein "Problem": ein <div> mit einer Tabelle.
Die Tabelle hat eine prozentuale Weite damit die Navigation auch schick aussieht :)
Gibt es eine Möglichkeit das gleiche Ergebnis ohne Tabelle hinzubekommen?
Hi,
Natürlich, pack die Navigation in eine Liste und formatiere die nach Geschmack.
Falls dir Ideen dazu fehlen, schau doch mal hier: http://de.selfhtml.org/css/layouts/navigationsleisten.htm
Viel Erfolg Biggi