CSS 列 100% 高度,带正文边距
我有这个网站: http://manual.businesstool.dk/
我希望列适合窗口,与主体边距。由于边距的原因,它仍然扩展到窗口之外, 为什么?
i have this site: http://manual.businesstool.dk/
And i want the columns to fit the window, with the body margin. It still expands beyond the window because of the margin,
why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是删除
height: 100%;
声明并添加bottom: 0;
。另一种方法是使用 box-sizing: border-box; 但并非所有浏览器都支持。
One way to do this is to get rid of the
height: 100%;
declaration and instead addbottom: 0;
.Another way is to use
box-sizing: border-box;
but that isn't supported in all browsers.