PHP前端开发

html如何设置溢出隐藏

百变鹏仔 3个月前 (09-22) #HTML
文章标签 如何设置
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视频教程