首页 > 代码库 > 电力项目七--js控制文字内容过长的显示

电力项目七--js控制文字内容过长的显示

当文本框中文字内容过长时,需要调整显示的样式

 技术分享

如上图所示的样式

对应的代码为:

<div id="showInfomation" style="visibility: hidden"></div>
                            <tr onm ouseover="this.style.backgroundColor = ‘white‘" onm ouseout="this.style.backgroundColor = ‘#F5FAFE‘;">
                                <td style="HEIGHT:22px" align="center" width="40%">
                                    <div class="scrollStyle" align="left" onmouseover="showInfoWithPanel(this)" onmouseout="hiddenInfoPanel(this)" style="table-layout:fixed;">
                                    <!-- 站点运行情况 -->
                                        <s:property value=http://www.mamicode.com/"stationRun"/>
                                    </div>

 

电力项目七--js控制文字内容过长的显示