打赏

css 实用代码汇总

1、table 排版(防止td文字过多导致table变形)

            table {
                /*为表格设置合并边框模型*/
                border-collapse: collapse;
                border-spacing: 0;
                /*固定表格布局*/
                table-layout: fixed;
            }
            td{
               /*允许在单词内换行。*/
               word-break: break-word;
            }

 

2、持续更新

posted @ 2017-05-08 09:47  孟繁贵  阅读(439)  评论(0)    收藏  举报
TOP