how do I display the gridlines in a HTML table? (am using IE6)
Via css. Put this inside the <head>
tag.
<style type="text/css" media="screen">
table{
border-collapse:collapse;
border:1px solid #FF0000;
}
table td{
border:1px solid #FF0000;
}
</style>
<table border="1"></table>
should do the trick.
For internal gridlines, use the tag: td For external gridlines, use the tag: table
来源:https://stackoverflow.com/questions/1763032/html-css-table-with-gridlines