前端之家收集整理的这篇文章主要介绍了
html – Overflow属性on不会创建一个滚动条,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图创建一个表单元格< td>有一个溢出但它不工作…
有我的CSS代码:
td.blog_content
{
max-height: 50px;
overflow: auto;
width: 360px;
text-align: left;
padding: 2px;
}
和我的HTML:
<td class="blog_content"><?PHP echo $blog['content']; ?></td>
如果文本太长,它将创建一个带滚动条的简单框
尝试将其包装在< div>中.我很确定没有为< td>定义overflow
属性元素,至少在
HTML4不是.
<td class="blog_content">
<div><?PHP echo $blog['content']; ?></div>
</td>
.blog_content div {
height: 50px;
max-height: 50px;
overflow: auto;
}
原文链接:https://www.f2er.com/html/224513.html