CSS, breite der Tabelle und Spalten?

0Byte

Grünschnabel
Hi,

vorweg, ich hab 0 Ahnung in Css, nun habe ich jedoch folgenden Code:

Code:
/*
Coffee with milk
Table design by Roger Johansson, 456 Berea Street
www.456bereastreet.com
================================================*/

table {
	font:normal 76%/150% "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
	border-collapse:separate;
	border-spacing:0;
	margin:0 0 1em;
	color:#000;
	}
table a {
	color:#523A0B;
	text-decoration:none;
	border-bottom:1px dotted;
	}
table a:visited {
	color:#444;
	font-weight:normal;
	}
table a:visited:after {
	content:"\00A0\221A";
	}
table a:hover {
	border-bottom-style:solid;
	}
thead th,
thead td,
tfoot th,
tfoot td {
	border:1px solid #523A0B;
	border-width:1px 0;
	background:#EBE5D9;
	}
th {
	font-weight:bold;
	line-height:normal;
	padding:0.25em 0.5em;
	text-align:left;
	}
tbody th,
td {
	padding:0.25em 0.5em;
	text-align:left;
	vertical-align:top;
	}
tbody th {
	font-weight:normal;
	white-space:nowrap;
	}
tbody th a:link,
tbody th a:visited {
	font-weight:bold;
	}
tbody td,
tbody th {
	border:1px solid #fff;
	border-width:1px 0;
	}
tbody tr.odd th,
tbody tr.odd td {
	border-color:#EBE5D9;
	background:#F7F4EE;
	}
tbody tr:hover td,
tbody tr:hover th {
	background:#ffffee;
	border-color:#523A0B;
	}
caption {
	font-family:Georgia,Times,serif;
	font-weight:normal;
	font-size:1.4em;
	text-align:left;
	margin:0;
	padding:0.5em 0.25em;
	}

Ich habe keine Ahnung wie ich die Tabellenbreite und vor allem wo ich auch die Spaltenbreite beeinflussen kann. Ich habe schon eine ganze Weile herumprobiert, aber was Sinnvolles ist dabei nicht herraus gekommen.

Vielleicht kann mir jemand unter die Arme greifen?

Danke, 0Byte
 
Moin,

die Breite der Tabelle und Spalten sollte sich in diesen Selektoren problemlos festlegen lassen:

Code:
table {
	...
	}

thead th,
thead td,
tfoot th,
tfoot td {
	...
	}

tbody th,
td {
	...
	}


mfg Maik
 
Zurück