0

After uploading a document in my page, the document automatically refreshed. Tho after refreshing the page scroll bar disappear?

See this images:

In page load scroll bar is visible, [Before Imgage][1] https://i.stack.imgur.com/j3szo.png

After page refresh scrolling not visible

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

How can i fix this issue?

My code :

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

The Little Cousin
  • 422
  • 2
  • 7
  • 20
Elina
  • 139
  • 3
  • 9

1 Answers1

0

Since the table is only displaying 1 content and not multiple contents there's no need to have a Scroll Bar. While having the height: auto; the scroll bar should display when you upload multiple files.

You may try to use the code in this form;

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

You might also check the following post: How to display scroll bar onto a html table

Community
  • 1
  • 1
The Little Cousin
  • 422
  • 2
  • 7
  • 20