admin管理员组文章数量:1122832
I am fairly new to CSS and have always had issues with layout.
I've been trying to implement some Grid layouts but am having trouble as I collapse the browser. I have 2 columns set to 40% 60% respectively. I simply want the second column to not overlap the first column as I make the browser smaller horizontally. I just want the text in column two to wrap until it can't anymore and then the browser just cover it instead of the second column moving to the left and taking up the space in column 1.
I tried including code but I keep getting an error so hoping for some direction without it.
I've tried pretty much everything I can think of to try preventing overflow, setting min and max sizes. I have not ventured into the mediaquery stuff as this seems like it should be simple enough to not have content go beyond its set container.
I am fairly new to CSS and have always had issues with layout.
I've been trying to implement some Grid layouts but am having trouble as I collapse the browser. I have 2 columns set to 40% 60% respectively. I simply want the second column to not overlap the first column as I make the browser smaller horizontally. I just want the text in column two to wrap until it can't anymore and then the browser just cover it instead of the second column moving to the left and taking up the space in column 1.
I tried including code but I keep getting an error so hoping for some direction without it.
I've tried pretty much everything I can think of to try preventing overflow, setting min and max sizes. I have not ventured into the mediaquery stuff as this seems like it should be simple enough to not have content go beyond its set container.
Share Improve this question asked Nov 21, 2024 at 23:02 Melissa ParkerMelissa Parker 11 3 |1 Answer
Reset to default 0Was able to ensure column 1 kept a min-width using the minmax
attribute:
grid-template-columns: minmax(600px, 600px) 2fr;
本文标签: containersPrevent CSS Grid Columns from OverlappingStack Overflow
版权声明:本文标题:containers - Prevent CSS Grid Columns from Overlapping - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736306662a1933038.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
<>
icon. See How to create a Minimal, Reproducible Example – Paulie_D Commented Nov 21, 2024 at 23:20min-width
on column2 – Paulie_D Commented Nov 21, 2024 at 23:25