css样式收集

.WordBreak{word-break:break-all;word-wrap:break-word;}

注意这里要设置div的宽度

word-break:break-all;支持IE6、7、8,Chrome等,word-wrap:break-word;支持火狐。

.overflow_ellipsis{display:inline-block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}

当一个块儿元素指定了宽度之后,超出的部分会用...来表示,和title配合用来做页面部分的布局控制。

.Clear{clear:both;visibility:hidden;height:0px;overflow:hidden;border-top:1px solid transparent!important;margin-top:-1px !important;margin-top:0px;border-top:0px;}

清楚浮动 

原文地址:https://www.cnblogs.com/myfreefield/p/2600396.html