搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Could you please explain the overflow concepts?

  • 5 个回答
  • 2 人有此问题
  • 9 次查看
  • 最后回复者为 Epicaleb

more options

I have read the overflow concept in the following link https://developer.mozilla.org/en-US/docs/Web/CSS/overflow

My question is that the overflow: visible (the content shouldn't be clipped) isn't working for the modal popups.

and my CSS properties for modal popup is as follows : background-color: #F8F8F7; height: 340px; overflow-x: hidden; overflow-y: scroll; padding: 15px 10px;

I have read the overflow concept in the following link https://developer.mozilla.org/en-US/docs/Web/CSS/overflow My question is that the overflow: visible (the content shouldn't be clipped) isn't working for the modal popups. and my CSS properties for modal popup is as follows : background-color: #F8F8F7; height: 340px; overflow-x: hidden; overflow-y: scroll; padding: 15px 10px;

被采纳的解决方案

Actually, Firefox is rendering the page correctly. You'll just need to modify your CSS slightly.

NOTE: When I opened your popup in Firefox, there were two scrollbars, one on the inside, one on the outside.

If you do not like the inside scrollbar, set the

   <div class="FAQ-Page-Content">

element's overflow attribute to visible.

If you do not like the outside scrollbar, set the

   <div id="FAQ-Page-Container">

element's overflow attribute to visible.


I hope that solved your problem!

If it did, would you please choose this answer as your solution? It would help other Firefox users to find help on the forums faster and more efficiently. Thanks!

And of course, feel free to post back if you need more help!

Happy browsing!

定位到答案原位置 👍 1

所有回复 (5)

more options

Hi!

According to your CSS, none of the content is rendered outside of your popup box. Content that is too wide is cut off and content that is too tall engages a scrollbar. If you want all your content to spill out of your popup, you'd set overflow to visible.


I hope that solved your problem!

If it did, would you please choose this answer as your solution? It would help other Firefox users to find help on the forums faster and more efficiently. Thanks!

And of course, feel free to post back if you need more help!

Happy browsing!

more options

Hi Epicaleb, Thanks for your reply Even when i set overflow to visible it doesn't display the entire content please access the sight and find the FAQ link which will be displayed on the right,and when you click on the link it must open a modal popup https://www.fileright.com/ I have attached a instance for your reference.

more options

Unfortunately, I was unable to locate the FAQ link. Could you describe its location in a little more detail or perhaps show a screenshot with it circled? This way, I could inspect the code to see if Firefox is really rendering things incorrectly.

由Epicaleb于修改

more options

Sorry for late reply Epicaleb here you go https://www.fileright.com/deferredaction/faq/ans/EQ-1.0-Faq3.jsp

what i need from this is the entire content right from the top till bottom should be visible without scroll.

Please do let me know you need any other information

Many thanks in advance:)

more options

选择的解决方案

Actually, Firefox is rendering the page correctly. You'll just need to modify your CSS slightly.

NOTE: When I opened your popup in Firefox, there were two scrollbars, one on the inside, one on the outside.

If you do not like the inside scrollbar, set the

   <div class="FAQ-Page-Content">

element's overflow attribute to visible.

If you do not like the outside scrollbar, set the

   <div id="FAQ-Page-Container">

element's overflow attribute to visible.


I hope that solved your problem!

If it did, would you please choose this answer as your solution? It would help other Firefox users to find help on the forums faster and more efficiently. Thanks!

And of course, feel free to post back if you need more help!

Happy browsing!