冻结bootstrap中的第一行和第一列

时间:2015-02-19 09:16:40

标签: javascript html css twitter-bootstrap

我在我的应用程序中使用了bootstrap作为布局。 整个页面分为2X2 div,

我想冻结顶行和第一列。我怎么能这样做?

以下是描述我的要求的图表。

Required form

3 个答案:

答案 0 :(得分:0)

Mitali,试试这个,

使用position:fixed作为第一行

这是左侧方框

.leftside {
display: inline-block;
float: left;
position: relative;
width: 250px (your value);
margin-top: 58px (your value);
background-color: #ccc;
height: 100%;
}

右侧方框

.rightside {
margin-left: 250px;
min-height: 1000px (your value);
margin-top: 0px;
padding: 0px;
background-color: #eee;
overflow: auto;
position: relative;
}

答案 1 :(得分:0)

尝试使用bootstrap -

#sidebar.affix-top{
position: static;
margin-top:30px;
width:228px;
}
#sidebar.affix{
position: fixed;
top:70px;
width:228px;
}

答案 2 :(得分:0)

已经有几个例子。

https://codepen.io/aifarfa/pen/jbMqba

https://jsfiddle.net/RMarsh/bzuasLcz/3/

https://www.jqueryscript.net/demo/jQuery-Plugin-To-Freeze-Table-Columns-Rows-On-Scroll/

Looks like I have to enter in code to show these links, this is for angular and jquery using html tables.