คำถามติดแท็ก vertical-scrolling

13
ตาราง HTML ที่มีความกว้าง 100% พร้อมการเลื่อนในแนวตั้งภายในร่างกาย
ฉันจะตั้งค่า<table>ความกว้าง 100% และวางไว้ในการ<tbody>เลื่อนแนวตั้งเฉพาะสำหรับความสูงได้อย่างไร table { width: 100%; display:block; } thead { display: inline-block; width: 100%; height: 20px; } tbody { height: 200px; display: inline-block; width: 100%; overflow: auto; } <table> <thead> <tr> <th>Head 1</th> <th>Head 2</th> <th>Head 3</th> <th>Head 4</th> <th>Head 5</th> </tr> </thead> <tbody> <tr> <td>Content 1</td> <td>Content 2</td> …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.