我需要在具有n个列的动态宽度的表中使前两列粘性。
我曾尝试过以下css
td:nth-child(1),td:nth-child(2){
position:sticky;
left:0px;
}
然后我通过计算第一列的宽度
在js中设置了第二列的左侧位置 var width=$("table tr > td:nth-child(1)").outerWidth();
$("table.matrix_class tr > td:nth-child(2)").css('left',width);
现在我需要在css中做所有的东西而不是js.How我怎么能在css中做到这一点?
答案 0 :(得分:0)
您可以使用此css执行粘贴标题。
现场工作演示: https://jsfiddle.net/Akash951/q2sctfwz/ [演示] [1]
Theorem example :
forall (f : bool -> bool) (b : bool),
f (f b) = b.
Proof.
intros.
destruct (f true) eqn:?; destruct (f false) eqn:?; destruct b; try congruence.