0
固定位置のテーブルセルの内容を右側に揃えることは可能ですか?固定配置されたテーブルセルの内容を右側に揃えますか?
デモを確認してください - 黄色の3番目のボックスは反応する白い容器の右側に付いてください。
固定位置とテーブルセルは保管してください。おかげ
body {
background-color: grey;
}
.container {
width: 100%;
background-color: white;
margin: 0 auto;
max-width: 80%;
}
table {
width: 100%;
}
.first {
;
position: fixed;
background-color: red;
}
.second {
width: 50%;
background-color: black;
color: white;
text-align: center;
}
.third {
text-align: right;
position: fixed;
background-color: yellow;
}
<body>
<div class="container">
<table>
<tr>
<td class="first">First</td>
<td class="second">Second</td>
<td class="third">Third</td>
</tr>
</table>
</div>
</body>
固定位置とテーブルセル彼らは固定に変更し、それが今であるとして、クロム、FirefoxとSafariで正常に動作ヘッダーのために使用されているので、私のためである必要がありますされています。モバイルデバイスのブラウザでは、レイアウトが変更されるため、問題はありません。 – Adyyda