扩展DIV如何检查它是否超出了屏幕尺寸
我们有一个 DIV,它根据表单中的用户选项加载内容。 DIV 可以变大以在屏幕上看到,因为它也是一个粘性元素并跟随屏幕上的用户。
如果 DIV 本身的某些部分不在屏幕上,我们如何才能解决该问题?如果是,则显示一个可以链接到完整内容的按钮。
有什么想法吗?
奇妙
We have a DIV that is loaded with content based on user options in a form. The DIV can grow to large to be seen on screen as it is also a sticky element and follows the user on the screen.
How would we get the DIV to work out if some of itself is off screen and if so show a button that can then link to the full content.
Any ideas?
Marvellous
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您正在寻找 JS 解决方案,这可能会起作用:
If you are looking for a JS solution perhaps, this would work:
如果你可以强制设置 div 的最大宽度,请尝试使用 CSS :
if you can force the maximum width of your div, try this with CSS :
这可以通过 CSS 来完成,
This can be done via CSS,