如何在html中让溢出的文字省略号显示 && html放入鼠标显示完整内容

css代码

.commo-textover {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

html代码

<div class="commo-textover" :title="node.label" >{
    
    { node.label }}</div>

猜你喜欢

转载自blog.csdn.net/m0_67986791/article/details/129039730