在div表中创建colspan

我想将第一列(服务请求)扩展到第二列(空白),因此它应该像1列2行一样显示。我在jsfiddle上有这个CSS和html。

希望你能帮我这个忙。

<div class="Table">
<div class="Title">
    <p>This is a Table</p>
</div>
<div class="Heading">
    <div>
    </div>
    <div class="Cell">
        <p>Case Status</p>
    </div>
    <div class="Cell">
        <p>Count</p>
    </div>
      <div class="Cell">
        <p>Case Age</p>
    </div>
     <div class="Cell">
        <p>Case Affected HC</p>
    </div>
     <div class="Cell">
        <p>Schedule HC</p>
    </div>
     <div class="Cell">
        <p>% Affected</p>
    </div>
</div>
<div class="Row">
    <div class="Cell merged">
        Service Request
    </div>
    <div class="Cell">
        <p>Open</p>
    </div>
    <div class="Cell">
        <p></p>
    </div>
    <div class="Cell">
        <p></p>
    </div>
     <div class="Cell">
        <p></p>
    </div>
    <div class="Cell">
        <p></p>
    </div>
    <div class="Cell">
        <p></p>
    </div>
</div>
<div class="Row">
    <div class="Cell">            
    </div>
    <div class="Cell">
        <p>Closed</p>
    </div>
    <div class="Cell">
        <p>Row 2 Column 3</p>
    </div>
</div>

div table

输出应该像这样一个

在div表中创建colspan

先谢谢大家。

dhtz126 回答:在div表中创建colspan

使用表格(类似这样的事情会更容易),然后使用rowspan

table.blueTable {
  border: 1px solid #1C6EA4;
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td,table.blueTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.blueTable tbody td {
  font-size: 13px;
}
table.blueTable tr:nth-child(even) {
  background: #D0E4F5;
}
table.blueTable thead {
  background: #1C6EA4;
  background: -moz-linear-gradient(top,#5592bb 0%,#327cad 66%,#1C6EA4 100%);
  background: -webkit-linear-gradient(top,#1C6EA4 100%);
  background: linear-gradient(to bottom,#1C6EA4 100%);
  border-bottom: 2px solid #444444;
}
table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
  border-left: none;
}

table.blueTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  background: #D0E4F5;
  background: -moz-linear-gradient(top,#dcebf7 0%,#d4e6f6 66%,#D0E4F5 100%);
  background: -webkit-linear-gradient(top,#D0E4F5 100%);
  background: linear-gradient(to bottom,#D0E4F5 100%);
  border-top: 2px solid #444444;
}
table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
<table class="blueTable">
  <thead>
  <tr>
  <th style="background:white"></th>
  <th>head2</th>
  <th>head3</th>
  <th>head4</th>
  </tr>
  </thead>
  <tfoot>
  <tr>
  <td colspan="4">
  <div class="links"><a href="#">&laquo;</a> <a class="active" href="#">1</a> <a href="#">2</a> <a href="#">3</a> <a href="#">4</a> <a href="#">&raquo;</a></div>
  </td>
  </tr>
  </tfoot>
  <tbody>
  <tr>
  <td rowspan="2">cell1_1</td>
  <td>cell2_1</td>
  <td>cell3_1</td>
  <td>cell4_1</td>
  </tr>
  <tr>

  <td>cell2_2</td>
  <td>cell3_2</td>
  <td>cell4_2</td>
  </tr>
  <tr>
  <td>cell1_3</td>
  <td>cell2_3</td>
  <td>cell3_3</td>
  <td>cell4_3</td>
  </tr>
  <tr>
  <td>cell1_4</td>
  <td>cell2_4</td>
  <td>cell3_4</td>
  <td>cell4_4</td>
  </tr>
  </tbody>
</table>

本文链接:https://www.f2er.com/3161376.html

大家都在问