简体   繁体   English

标头对齐问题-无法修复

[英]header alignment issue - unable to fix

I want to make the html table header fixed so that when user scrolls header is still be seen. 我想固定html表标题,以便在用户滚动标题时仍能看到它。 I'm using bootstrap to display modal window. 我正在使用引导程序来显示模式窗口。 I tried using css, header is getting fixed but the header alignment is not correct. 我尝试使用CSS,标头已固定,但标头对齐不正确。 I know its pretty straight forward but unable to fix the header alignment issue. 我知道它非常简单,但是无法解决标题对齐问题。 Please find the sample code here 请在此处找到示例代码

html code: html代码:

  <div class="modal-body"  id="modal-body">
                       <table id="myTable" class="table table-fixedheader table-bordered table-striped"> <thead>
              <tr>
               <th style="width:14%;">Header1<th><th style="width:12%;">Header2</th><th style="width:19%;">Header3</th><th style="width:16%;">Header4</th>
              </tr></thead><tbody>
              <tr><td>1111</td><td>33333</td><td>1111</td><td>33333</td></tr>
              <tr><td>1111</td><td>33333</td><td>1111</td><td>33333</td></tr>
              ...</tbody></table>

css code: CSS代码:

.modal-body {
max-height: calc(100vh - 210px);
overflow-y: auto;
}

table {
width: 100%;
}

thead, tbody, tr, td, th { display: block; }

tr:after {
content: ' ';
display: block;
visibility: hidden;
clear: both;
}

thead th {
height: 30px;

/*text-align: left;*/
}

tbody {
height: 120px;
overflow-y: auto;
}

thead {
/* fallback */
}


tbody td, thead th {
width: 19.2%;
float: left;
}

Note:width in <th> is required. 注意: <th>宽度是必需的。 Each header is of different width in my application, so i should have that width assigned in <th> 每个标题在我的应用程序中具有不同的宽度,因此我应该在<th>分配该宽度

if you use bootstrap try this <tr class="row"><th class="col-md-4">Header1</th><th class="col-md-4">Header2</th><th class="col-md-4">Header3</th><th class="col-md-4">Header4</th></tr> 如果您使用引导程序,请尝试以下<tr class="row"><th class="col-md-4">Header1</th><th class="col-md-4">Header2</th><th class="col-md-4">Header3</th><th class="col-md-4">Header4</th></tr>

Bootstrap/tables 引导/表

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM