User since
2003-08-15
2653
Artikel
BenutzerIn
hi,
kann ich eigentlich auch einen extra Rahmen für <td> festlegen?
Das würde mir ersparen, für jeden Kasten etxra ne neue Tabelle anlegen zu müssen.
müsste irgendwie sowas geben wie...:
.td2 {
border:4pt;
border-color: ó
}
oder so...
User since
2003-08-04
14371
Artikel
ModeratorIn
Du musst dann noch in <td>
class="td2" machen... Evtl. musst Du noch ein
border-style: solid; in das CSS schreiben...
User since
2003-08-04
1706
Artikel
HausmeisterIn
Vor allem kannst du auch nach Elementtypen unterscheiden:
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
<html>
<head>
<style rel="stylesheet" type="text/css">
<!--
table.td2 {
border-style: solid;
border-color: red;
border-width: 2px;
}
td.td2 {
border-style: solid;
border-color: black;
border-width: 1px;
}
-->
</style>
</head>
<body>
<table class="td2">
<tr>
<td class="td2">Zelle1</td>
<td>Zelle2</td>
</tr>
</table>
</body>
</html>
Gruß Alex