【发布时间】:2016-12-22 13:51:02
【问题描述】:
无论我有多少内容,我都试图让页脚贴在页面底部。 我想用 flexbox 来做这个。
我在 ASP.net (Microsoft Visual Studio) 中使用母版页,但它不起作用。
我用我的代码创建了this fiddle。
html {
height: 100vh;
}
.alignCenter {
display: flex;
align-items: center;
justify-content: center;
}
.site {
display: flex;
min-height: 100%;
flex-direction: column;
}
.siteContent {
flex: 1;
}
我在 html CSS 中尝试了 % 和 vh。
我也尝试过使用常规的 HTML 和 CSS,我可以让它在那里工作,如 this fiddle 所示。
那么为什么它不能在 ASP.net 中工作呢?
【问题讨论】: