So erstellen Sie eine Tabelle nur mit dem
-Tag und CSSHTML

HTML-Programmierer
Anonymous
 So erstellen Sie eine Tabelle nur mit dem
-Tag und CSS

Post by Anonymous »

Ich möchte eine Tabelle nur mit dem -Tag und CSS erstellen.
Dies ist mein Beispieltabellencode und -stil:

Code: Select all

.divTable {
display: table;
width:auto;
background-color:#eee;
border:1px solid  #666666;
border-spacing:5px;/*cellspacing:poor IE support for  this*/
/* border-collapse:separate;*/
}
.divRow {
display:table-row;
width:auto;
}
.divCell  {
float:left;/*fix for  buggy browsers*/
display:table-column;
width:200px;
background-color:#ccc;
}

Code: Select all




Customer ID
Customer Name
Customer Address


001
002
003


xxx
yyy
www


ttt
uuu
Mkkk





Aber diese Tabelle funktioniert nicht mit Version IE7 und niedriger.

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post