Thread css: Rahmen für einzelne Spalte (2 answers)
Opened by Froschpopo at 2005-10-29 06:33

format_c
 2005-10-30 03:12
#24642 #24642
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
Vor allem kannst du auch nach Elementtypen unterscheiden:
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
<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

View full thread css: Rahmen für einzelne Spalte