我能够使用mx-auto类,但是尽管我的myContainerFixed类成功显示高度固定,但我无法使my-auto类起作用。
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.my-auto {
margin-top: auto;
margin-bottom: auto;
}
.myContainerFixed {
height: 90vh;
}
@screen lg {
.myContainerFixed {
height: 85vh;
}
}
.w-max {
width: max-content;
}
尽管这在这种情况下肯定不是最佳选择,但我还尝试了使用绝对定位,但也没有起作用以下是示例
.absoluteCenter {
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}
return (
);
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
它与顶部元素(myContainerFixed)的display: block(默认)有关。
例如,给它display: flex;将修复此问题
.myContainerFixed { display: flex; height: 90vh; }我建议移除mx-auto和my-auto,并使用flex属性来定位表单
.myContainerFixed { height: 90vh; display: flex; justify-content: center; align-items: center; }