scroll bar for a table cell
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Is there a way to add a scroll bar to a 'td' tag? I have a dynamic content inside a 'td' tag. I want the 'td' to be of fixed size and if the content becomes larger than the 'td' size, I want a scroll bar to appear only on that particular cell. Is there a way to achieve this? 回答1: Yes you can do that. The easiest way is to put inside your cell a div filling it and set its overflow style property. CSS : div.scrollable { width: 100%; height: 100%; margin: 0; padding: 0; overflow: auto; } HTML : <td><div class=scrollable> Some content with a