本文转载于:猿2048网站➽css 实用代码汇总php
一、table 排版(防止td文字过多致使table变形)css
table {
/*为表格设置合并边框模型*/
border-collapse: collapse;
border-spacing: 0;
/*固定表格布局*/
table-layout: fixed;
}
td{
/*容许在单词内换行。*/
word-break: break-word;
}
二、持续更新布局