固定divの隣にdivを配置しようとしていますが、代わりにdivが固定div内に配置されています。 divをfixed divの隣に置くにはどうすればいいですか?私はdivとfloat: right
を使うことができると知っていますが、浮動小数点を使用せずにそれを行う方法は、ただinline-block
でですか?ここにはjsFiddleがあります。要素を固定divの隣に置く
HTML
<div id='column'>
</div>
<div id='content'>
</div>
CSS
body {
height: 100%;
}
#column {
display: inline-block;
position: fixed;
width: 20%;
min-height: 100%;
background-color: red;
vertical-align: top;
z-index: -1;
}
#content {
display: inline-block;
background-color: black;
width: 100px;
height: 200px;
}