其他分享
首页 > 其他分享> > html+css中的项目案例小点

html+css中的项目案例小点

作者:互联网

文字超过指定最大宽度,超出部分隐藏并用···代替


       <style>
        a{
            text-decoration: none;
        }
        a:hover{
            background: plum;
        }
        div{
            height: 20px;
            max-width: 100px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border: 1px solid #000;
        }
    </style>
    <body>
    <div class="text">
        <a href="#">我是测试多余部分</a>
    </div>
</body>

标签:text,100px,height,decoration,html,小点,overflow,nowrap,css
来源: https://blog.csdn.net/qq_43952245/article/details/100620340