html设置溢出隐藏的方法:1、单行设置溢出隐藏,代码为【overflow: hidden】;2、多行设置溢出隐藏,代码为【display: -webkit-box】。
本教程操作环境:windows7系统、html5版,DELL G3电脑。
html设置溢出隐藏的方法:
单行:
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
多行:
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
相关学习推荐:html视频教程
以上就是html如何设置溢出隐藏的详细内容,转载自php中文网
发表评论 取消回复