表格或div被撑开的解决办法
如果是表格,请用:
table {
table-layout: fixed;
word-break: break-all;
}
td{word-wrap:break-word;width:10em;}
如果是div层,请用:
div {
table-layout: fixed;
word-wrap: break-word;
width: 加上宽度;
overflow: hidden; (让多出来的不显示。)
}
兼容 IE 和 FF 的换行 CSS 推荐样式 最好的方式是
word-wrap:break-word; overflow:hidden;
网页背景渐变
一、从上往下渐变
以下为引用的内容: body{ |
二、从左上至右下渐变
以下为引用的内容: body{ |
三、从左往右渐变
以下为引用的内容: body{ |
四、从上往下渐变
以下为引用的内容: style="filter:progid:DXImageTransform.microsoft.gradient(gradienttype=0,startColorStr=blue,endColorStr=white);" |