我试图将页脚放在两个弹性框下(右侧和左侧)。 但我的代码无法正常工作。我的代码中有什么问题。
#all{
position: absolute;
width: 55%;
margin: 0 auto;
display: flex;
left: 50%;
transform: translateX(-50%);
}
#left{
width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
}
#right{
width: 20%;
}
footer{
width: 100%;
display: block;
clear: both;
text-align: center;
}
我的HTML摘要如下;
<body>
<div id="header">
</div>
<div id="all">
<div id="left">
</div>
<div id="right">
</div>
</div>
<footer>some words</footer>
</body>