溢位可見
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;
}
內容未被剪裁,如果超出其容器大小,將在內容框外呈現。