Hallo
Wie bekomme ich Border in
.devicename {
font-size : 18px;
text-align : center;
color : #ffffff;
background-color : #2D4758;
background-image : url(../images/default/ae.png);
background-repeat : no-repeat;
}
.devicestate {
font-size : 18px;
text-align : center;
color : #676a67;
background-color : #ffffff;
}
angezeigt
mit
border : 1 solid #cccccc;
geht das nicht
Gruß Hermann
px vergessen.
border: 1px solid #cccccc;
LG
funktioniert leider nicht
wenn ich es in
table {
min-width : 200px;
}
table a:hover {
color : #ffffff;
}
passt es auch nicht
wahrscheinlich müsstest du dann noch bei table:
table {
border-collapse: collapse;
}
ändern.
oder du sprichst die zellen direkt an mit:
.devicename td {
#dein css code
}
.devicestate td {
#dein css code
}
LG