文本長度過長,出現省略號,鼠標放上去的時候出現提示框顯示全部信息

<html>
    <head>
        <meta charset="utf-8">
    
        <style>
        .contant:hover{
                text-overflow: ellipsis;
                white-space: nowrap;
                
        }
        .contant{
                text-overflow: ellipsis;
                white-space: nowrap;
                display: inline-block;
                width:100px;
                border:1px solid red;
                overflow:hidden;

        }
        </style>
    </head>
    <body>
        <span class="contant" title='北京市海淀區寶盛路1號院11號樓2層205、001088854918'>
            北京市海淀區寶盛路1號院11號樓2層205、001088854918
        </span>    
    </body>
    <script>

    </script>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章