Table

 

table的标准格式

<table id="" >
                <colgroup>
                    <col class="" />
                </colgroup>
                <thead>
                    <tr>

                        <th class=""></th>
                    </tr>
                </thead>
                <tbody>

        <tr>

          <th></th>

        </tr>
                </tbody>
            </table>

 

单行显示: 

1. table{table-layout:fixed;}

2. td{white-space: nowrap;}

 

自动换行:

word-break:break-all;

overflow:hidden;

 

折叠边框:

table
  {
  border-collapse:collapse;
  }

table,th, td
  {
  border: 1px solid black;
  }
 
posted @ 2011-10-31 13:17  huangqing  阅读(196)  评论(0)    收藏  举报