天天看點

css 實用代碼彙總

1、table 排版(防止td文字過多導緻table變形)

table {
                /*為表格設定合并邊框模型*/
                border-collapse: collapse;
                border-spacing: 0;
                /*固定表格布局*/
                table-layout: fixed;
            }
            td{
               /*允許在單詞内換行。*/
               word-break: break-word;
            }      

2、持續更新