繁体   English   中英

bootstrap-table标头和主体对齐不匹配

[英]bootstrap-table header and body alignments are mismatching

<thead>

<tr>

<th rowspan="2" data-field="id">SL</th>

<th rowspan="2" data-field="name">Region</th>

<th rowspan="2" data-field="price">PG Type</th>

<th rowspan="2" data-field="Fullname">Status</th>

<th colspan="2">CPO Patients</th>

<th colspan="5">Billing and Contract</th>

</tr>

<tr>

<th data-field="Email">Met</th>

<th data-field="Id">Possible</th>

<th data-field="Name">Billable</th>

<th data-field="Surname">Last Paid</th>

<th data-field="Fullname">Contract Info.</th>

<th data-field="Email">Payment Info.</th>

<th data-field="Iame">In Person Visit</th>

</tr>

</thead>

</table>

使用此代码我得到身体对齐不匹配,当我有几列时,它工作正常。 我正在使用bootstrap 3版本。 使用此代码我得到身体对齐不匹配,当我有几列时,它工作正常。 我正在使用bootstrap 3版本。

这将使所有th在一行中对齐,

<!DOCTYPE html>
<html>
<head>
    <title></title>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
    <tdble style="border : 1px solid black"> 

    <thead>

        <tr>
            <th colspan="2"  data-field="id">PR</th>
            <th colspan="2"  data-field="id">SL</th>

            <th colspan="2" data-field="name">Region</th>

            <th colspan="2" data-field="price">PG Type</th>

            <th colspan="2" data-field="Fullname">Status</th>

            <th colspan="1">CPO Patients</th>

            <th colspan="5">Billing and Contract</th>

        </tr>

        <tr style="text-align: center">

            <th  data-field="Email">Met</th>

            <th  data-field="Id">Possible</th>

            <th  data-field="Name">Billable</th>

            <th  data-field="Surname">Last Paid</th>

            <th  data-field="Fullname">Contract Info.</th>

            <th  data-field="Email">Payment Info.</th>

            <th  data-field="Iame">In Person Visit</th>

        </tr>

    </thead>


</table>
</body>
</html>

暂无
暂无

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

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