jsfiddle 我有三列,但我想要左右列,固定位置,当我滚动页面时,这些列伴随滚动,我的问题是,我不能让它们都固定在它们的位置,我有i18n 的另一个问题是,当我从 rtl 更改为 ltr 时。
css
body{
background:#fff;
margin:0px auto 0px auto ;
padding:0px auto 0px auto ;
}
html{
background:#fff;
margin:0px auto 0px auto ;
padding:0px auto 0px auto ;
}
.inner-page{
margin:0px auto 0px auto;
padding:0px auto 0px auto;
position: relative;
}
.inner-navbar{
margin:0px auto 0px auto;
padding:0px auto 0px auto;
width:1000px;
}
.inner-page-right{
background: #000;
width:200px;
min-height:1000px;
color:#fff;
float:right
}
.inner-page-center{
width:600px;
min-height:1000px;
float:right
}
.inner-page-left{
background: #000;
width:200px;
min-height:1000px;
color:#fff;
float:left
}
.inner-page-center-up{
height:50px;
}
.inner-page-center-down{
background-color:#e6e6e6;
border:1px solid #cccccc;
}
和 HTML
<div class="inner-page inner-navbar">
<div class="inner-page-right" >
column right
</div><!--inner-page-big-right_right-->
<div class="inner-page-center">
column center
</div><!--inner-page-big-right_right-->
<div class="inner-page-left">
column left
</div><!--inner-page-big-left-->
</div><!--inner-page-->