スクロール時にテーブルのヘッダーを修正するにはどうすればよいですか?私はこれをしようとしていますが、それは仕事をdoesn't:スティッキーヘッダーテーブル(角度付き)with ui-scrollfix
<body>
<div ui-view="header"></div>
<div ui-view="content"></div>
<div ui-view="footer"></div>
</body>
内容:CSSで
<div class="table-responsive">
<table class="table table-condensed">
<thead>
<tr class="well" ui-scrollfix>
:私はブートストラップを使用しています
.well {
background : #eee;
}
.well.ui-scrollfix {
position : fixed;
background : #f00;
top : 50;
}
、角度、SPAと私を得ますMongoDBデータベースからのng-repeatを持つデータ。それは、角度に関連していない
ありがとうございました!!! ... [貼り付け]これを読んでます(http:// getbootstrap.com/javascript/#affix) – Maher
ui-scrollfixはAngularのものですが、私のためにはうまくいきません。 –