摘要: .demo { color: red;/*所有现代浏览器*/ color: green9;/*所有IE浏览器*/ color:#CC0\0;/*IE8-9浏览器*/ color:#F0F\9\0;/*ie9*/*color: red;/*IE6-7浏览器*/ +color: blue;/*IE7浏览器*/ _color: orange;/*IE6浏览器*/ } @-moz-document url-prefix(){.demo{color:#897}/* all firefox */} @media screen and (-webkit-min-device-pixel-ratio:0) { 阅读全文
posted @ 2012-07-01 09:46 BiakeChou 阅读(160) 评论(0) 推荐(0) 编辑
摘要: .p1{ word-break:break-all; width:150px;}/*只对英文起作用,以字母作为换行依据*/.p2{ word-wrap:break-word; width:150px;}/*--只对英文起作用,以单词作为换行依据*/.p3{white-space:pre-wrap; width:150px;}/*只对中文起作用,强制换行*/.p4{white-space:nowrap; width:10px;}/*强制不换行,都起作用*/.p5{white-space:nowrap; overflow:hidden; text-overflow:ellipsis; width: 阅读全文
posted @ 2012-07-01 09:32 BiakeChou 阅读(133) 评论(0) 推荐(0) 编辑