按钮单击事件后的Chorme滚动条不显示?

时间:2017-01-03 07:22:18

标签: c# html css scrollbar

在我的页面中上传文档后,文档会自动刷新。刷新页面后滚动条消失了吗?

见图:

在页面加载滚动条中可见, [在Imgage之前] [1] https://i.stack.imgur.com/j3szo.png

页面刷新后滚动不可见

[After Image] [2] https://i.stack.imgur.com/PhD7f.png

我该如何解决这个问题?

我的代码:

<table width="100%" cellpadding="0" cellspacing="0" border="0" style="overflow-y:scroll !important; height:auto">

1 个答案:

答案 0 :(得分:0)

由于该表仅显示1个内容而不是多个内容,因此无需使用滚动条。在上传多个文件时,应显示height: auto; 滚动条。

您可以尝试使用此表单中的代码;

<table style="overflow-y:auto; width:100%; height:auto">

您还可以查看以下帖子:How to display scroll bar onto a html table