div+css
小怪
有时候,选择比努力更重要
展开
-
CSS实现DIV层背景颜色渐变
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> http://www.w3.org/1999/xhtml"> CSS实现DIV层背景颜色渐变 .change{ width:100%; height:600px; FILTER: progid:DXImageTransform.Microsoft.原创 2013-02-04 12:06:16 · 1483 阅读 · 0 评论 -
css 通用样式头(个人专用)
@charset "utf-8"; /* CSS Document */ * { padding:0; margin:0; } .fixed:after { content:"."; display:block; height:0; clear:both; visibility:hidden; } .fixed { display:block; } .fixed { min-he原创 2015-05-09 14:27:27 · 1123 阅读 · 0 评论 -
英文自动换行 and 中文超出隐藏
英文自动换行: .wrap { table-layout:fixed; word-break: break-all; overflow:hidden; } 超出隐藏: .text-overflow { width:100%; display:block;/*内联对象需加*/ word-break:keep-all;/* 不换行 */ white-space:nowrap;/原创 2016-04-05 12:32:01 · 1336 阅读 · 0 评论