フッターに垂直の仕切りを設定しようとしていますが、順序付けされていないリストの要素と重なるため問題があります。ウィンドウのサイズと順序付けられていないリストの位置に応じて、重なり合うことなく移動するようにするにはどうすればよいですか。
CSS
html, body {
height: 70%;
}
#wrap {
min-height: 70%;
}
#main {
overflow: auto;
padding-bottom: 140px;
}
#footer {
position: relative;
height: 140px;
margin-left: -20px;
margin-right: -20px;
opacity: 0.8;
clear: both;
background: #545454;
}
#footer-inner {
padding-left: 300px;
}
#divider {
border-left: 1px solid #0099CC;
height: 100px;
position: absolute;
right: 500px;
top: 10px;
margin: 0 auto;
float: center;
}
</style>
html
<div id="wrap">
<div id="main">
</div>
</div>
<div id="footer">
<div id = "divider">
</div>
<div id = "footer-inner">
<ul>
<li> Info </li>
</ul>
</div>