关于CSS
overflow超出的情况,常用hidden
overflow-x(y)
如果加了高度要让它自适应高度
text-overflow:auto;
还有可以加min-height最小高度
还有过了边界自动加...(IE)
text-overflow:ellipsis
通用的
.ellipsis {
text-overflow: ellipsis;
-moz-binding: url('ellipsis.xml#ellipsis');
<?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<binding id="ellipsis">
<content>
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</content>
</binding>
</bindings>
一个IE和FireFox的高度处理
.LeaveWordContent
{
_height:120px; //IE6支持
min-height:120px; //FireFox支持
border-bottom:1px solid #ccc;
padding:10px;
}
overflow超出的情况,常用hidden
overflow-x(y)
如果加了高度要让它自适应高度
text-overflow:auto;
还有可以加min-height最小高度
还有过了边界自动加...(IE)
text-overflow:ellipsis
通用的
.ellipsis {
text-overflow: ellipsis;
-moz-binding: url('ellipsis.xml#ellipsis');
<?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<binding id="ellipsis">
<content>
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</content>
</binding>
</bindings>
一个IE和FireFox的高度处理
.LeaveWordContent
{
_height:120px; //IE6支持
min-height:120px; //FireFox支持
border-bottom:1px solid #ccc;
padding:10px;
}
来源:https://www.cnblogs.com/lishenglyx/archive/2008/08/21/1273103.html