在table里面设置
table-layout: fixed;
WORD-BREAK: break-all!important;
WORD-WRAP: break-word!important;
//第三行,可以打断字
//看情况设置table width=100%;
colgroup col.field-name {
//注意不能直接colg fid,要一个个的来
//还有个table width:100%;
    width:25%;
}//很强大,将nowrap等删掉.就这样.
//原来重要性在于要设置本单元继承上一单元100%宽
    white-space: wrap;
    min-width:15%;//很好的
    min-width:100px;
去掉white-space: nowrap;//要允许
//只要有white-space: nowrap;,只要有nowrap,就将之删掉.
//将所有nowrap去掉
,将其设为wrap,然后设置min-width:100px;
遇着,nowrap,只有max-width,固定
width,要为100%,才好wrap或者break
max-width:100%;让超过100%的wrap
将display: table;给删掉,最恨表格
table {
    width:100%!important;
}
blockquote {margin:0.1em;}
a { text-decoration: none;} 
dd{margin-start: 10px;}
tr td.memname,tr.memlist td {
    width:25%;
}//就这样定义表格宽度
table-layout 定义表格算法


automatic 默认,由单元格内容决定
fixed 由表格宽或列宽决定
inherit 继承
css,字体可以加倍,或减倍
margin: 0 auto;可以居中对齐


img { max-width: 100%;}
图片自适应,加入custom.css
输入法还是切换为英文为初始比较方便
/*chrome.custom.css来删除更快*/


text-overflow: ellipsis,可以限制字数