<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  /* 显示限制长度的字符串，多于的用…代替*/      
        /* IE下的样式 */
        .ellipsis
        {
            display: block;
            width: 120px; /*对宽度的定义,根据情况修改*/
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-size:12px;
            clear: both;
            font-family:Arial;
        }
        /* FF 下的样式 */
        p
        {
            clear: both;
            font-family:Arial;
            font-size:12px;
            color:MenuText;
            text-transform:capitalize;
            text-align:center;
            
        }
        .ellipsis
        {
            float: left;
            max-width: 120px; /*IE不能解释该属性，而FF可以*/
        }
        p:after
        {
            content: "...";
        }
        
        .img
        {
        	border:0px;
        	}</pre></body></html>