溢出可见
HTML
<div>
Even if this div is too small to display its contents, the content is not clipped.
</div>
CSS
div {
width:50px;
height:50px;
overflow:visible;
}
结果
内容未被剪裁,如果超出其容器大小,将在内容框外呈现。
<div>
Even if this div is too small to display its contents, the content is not clipped.
</div>
div {
width:50px;
height:50px;
overflow:visible;
}
内容未被剪裁,如果超出其容器大小,将在内容框外呈现。