CSS overflow控制着大内容。它指示是剪辑内容还是添加滚动条。overflow包含以下属性:
- visible
- hidden
- scroll
- auto
例子:
<
!DOCTYPE>
<
html>
<
head>
<
style>
p {
width:100px;
height:80px;
border:1px solid;
overflow:visible;
}
<
/style>
<
/head>
<
body>
<
h2>
srcmini
<
/h2>
<
p>
The CSS overflow controls big content.
It tells whether to clip content or to add scroll bars.
<
/p>
<
/body>
<
/html>
输出如下:
hidden:overflow被裁剪, 其余内容不可见。
例子:
<
!DOCTYPE>
<
html>
<
head>
<
style>
p {
width:100px;
height:80px;
border:1px solid;
overflow:hidden;
}
<
/style>
<
/head>
<
body>
<
h2>
srcmini
<
/h2>
<
p>
The CSS overflow controls big content.
It tells whether to clip content or to add scroll bars.
<
/p>
<
/body>
<
/html>
【CSS overflow(溢出)用法示例代码介绍】输出如下:
scroll:溢出被裁剪, 但是添加了滚动条以查看其余内容。滚动条可以是水平或垂直的。
例子:
<
!DOCTYPE>
<
html>
<
head>
<
style>
p {
width:120px;
height:100px;
border:1px solid;
overflow:scroll;
}
<
/style>
<
/head>
<
body>
<
h2>
srcmini
<
/h2>
<
p>
The CSS overflow controls big content.
It tells whether to clip content or to add scroll bars.
<
/p>
<
/body>
<
/html>
输出如下:
auto:它会在需要时自动添加滚动条。
例子:
<
!DOCTYPE>
<
html>
<
head>
<
style>
p {
width:120px;
height:100px;
border:1px solid;
overflow:auto;
}
<
/style>
<
/head>
<
body>
<
h2>
srcmini
<
/h2>
<
p>
The CSS overflow controls big content.
It tells whether to clip content or to add scroll bars.
<
/p>
<
/body>
<
/html>
输出如下:
Overflow-x和Overflow-y:此属性指定如何更改元素的溢出。 x处理水平边缘, y处理垂直边缘。
例子:
<
!DOCTYPE>
<
html>
<
head>
<
style>
p {
width:120px;
height:100px;
border:1px solid;
overflow-x:scroll;
overflow-y:hidden;
}
<
/style>
<
/head>
<
body>
<
h2>
srcmini
<
/h2>
<
p>
The CSS overflow controls big content.
It tells whether to clip content or to add scroll bars.
<
/p>
<
/body>
<
/html>
输出如下:
推荐阅读
- HTML DOM console.time()方法用法示例介绍
- 如何实现用Java打印三角形图案(代码示例)
- jQuery.fn.extend()方法用法示例介绍
- Linux虚拟化(Linux容器(lxc)详细指南)
- 如何使用Python读取、写入和解析JSON(完整指南)
- 解释JavaScript中for(.. in)和for(.. of)循环语句之间的区别()
- SPARK 应用如何快速应对 LOG4J 的系列安全漏洞
- Linux之date命令
- 爆测一周!22年必看最细致代码托管工具测评