本文轉載於:猿2048網站➽css 實用代碼彙總php
一、table 排版(防止td文字過多致使table變形)css
table {
/*爲表格設置合併邊框模型*/
border-collapse: collapse;
border-spacing: 0;
/*固定表格佈局*/
table-layout: fixed;
}
td{
/*容許在單詞內換行。*/
word-break: break-word;
}
二、持續更新佈局