我有以下代码:
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
<div class="row">
<div class="cell colspan2">Cell</div>
</div>
</div>
<style>
.table {
display: table;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
}
.colspan2 {
/* What to do here? */
}
</style>
非常简单。如何为display: table-cell
的元素添加colspan(或等效的colspan)?
答案 0 :(得分:45)
据我所知,缺少colspan / rowspan只是display:table
的限制之一。看这篇文章:
http://www.onenaught.com/posts/201/use-css-displaytable-for-layout
答案 1 :(得分:24)
由于OP没有明确地规则解决方案必须是纯CSS,我会顽固地投入我的解决方法我今天想出来,特别是因为它比在一个内部有一个表更优雅表
示例等于&lt; table&gt;每行两个单元格和两行,其中第二行中的单元格为colspan="2"
的td。
我已经使用Iceweasel 20,Firefox 23和IE 10进行了测试。
div.table {
display: table;
width: 100px;
background-color: lightblue;
border-collapse: collapse;
border: 1px solid red;
}
div.row {
display: table-row;
}
div.cell {
display: table-cell;
border: 1px solid red;
}
div.colspan,
div.colspan+div.cell {
border: 0;
}
div.colspan>div {
width: 1px;
}
div.colspan>div>div {
position: relative;
width: 99px;
overflow: hidden;
}
<div class="table">
<div class="row">
<div class="cell">cell 1</div>
<div class="cell">cell 2</div>
</div>
<div class="row">
<div class="cell colspan">
<div><div>
cell 3
</div></div>
</div>
<div class="cell"></div>
</div>
</div>
实时动作(演示)here。
编辑: 我认为代码更适合打印机,因为默认情况下它们会保留背景颜色。我还创建了rowspan-demo,灵感来自这里的迟到答案。
答案 2 :(得分:14)
在Chrome 30中适用于我的更简单的解决方案:
可以使用display: table
代替display: table-row
来模拟Colspan:
.table {
display: block;
}
.row {
display: table;
width: 100%;
}
.cell {
display: table-cell;
}
.row.colspan2 {/* You'll have to add the 'colspan2' class to the row, and remove the unused <div class=cell> inside it */
display: block;
}
唯一的缺陷是堆叠行的单元格不会垂直对齐,因为它们来自不同的表格。
答案 3 :(得分:7)
答案 4 :(得分:6)
如果您正在寻找一种直接的CSS方式来模拟colspan,您可以使用display: table-caption
。
.table {
display: table;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
border: 1px solid #000;
}
.colspan2 {
/* What to do here? */
display: table-caption;
}
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
<div class="row">
<div class="cell colspan2">Cell</div>
</div>
</div>
答案 5 :(得分:4)
这是我在CSS中使用的一种方法,用于我自己的情况。
https://jsfiddle.net/mb8npttu/
<div class='table'>
<div class='row'>
<div class='cell colspan'>
spanning
</div>
<div class='cell'></div>
<div class='cell'></div>
</div>
<div class='row'>
<div class='cell'>1</div>
<div class='cell'>2</div>
<div class='cell'>3</div>
</div>
</div>
<style>
.table { display:table; }
.row { display:table-row; }
.cell { display:table-cell; }
.colspan { max-width:1px; overflow:visible; }
</style>
答案 6 :(得分:1)
您可以将colspan内容的位置设置为“relative”,将行设置为“绝对”,如下所示:
.table {
display: table;
}
.row {
display: table-row;
position: relative;
}
.cell {
display: table-cell;
}
.colspan2 {
position: absolute;
width: 100%;
}
答案 7 :(得分:1)
有一种解决方案可以使colspan成为整个表的宽度。您不能使用此技术来整理表的一部分。
代码:
*{
box-sizing: border-box;
}
.table {
display: table;
position: relative;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
border: 1px solid red;
padding: 5px;
text-align: center;
}
.colspan {
position: absolute;
left: 0;
width: 100%;
}
.dummycell {
border-color: transparent;
}
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
<div class="row">
<div class="cell dummycell"> </div>
<div class="cell colspan">Cell</div>
</div>
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
</div>
说明:
我们在colspan上使用绝对位置,使其成为表格的整个宽度。表本身需要相对位置。我们使用虚拟单元格来保持行的高度,绝对位置不遵循文档流。
当然,这些天您也可以使用flexbox和grid解决此问题。
答案 8 :(得分:0)
通过使用适当的div类和CSS属性,您可以模仿colspan和rowspan的所需效果。
这里是CSS
.table {
display:table;
}
.row {
display:table-row;
}
.cell {
display:table-cell;
padding: 5px;
vertical-align: middle;
}
这是示例HTML
<div class="table">
<div class="row">
<div class="cell">
<div class="table">
<div class="row">
<div class="cell">X</div>
<div class="cell">Y</div>
<div class="cell">Z</div>
</div>
<div class="row">
<div class="cell">2</div>
<div class="cell">4</div>
<div class="cell">6</div>
</div>
</div>
</div>
<div class="cell">
<div class="table">
<div class="row">
<div class="cell">
<div class="table">
<div class="row">
<div class="cell">A</div>
</div>
<div class="row">
<div class="cell">B</div>
</div>
</div>
</div>
<div class="cell">
ROW SPAN
</div>
</div>
</div>
</div>
</div>
</div>
从我在问题和大多数回答中所看到的情况来看,人们似乎忘记了在任何特定的div中,他们扮演的是一个表格单元格&#34;你可以插入另一个像嵌入式表格一样的div,然后开始这个过程。
***它不是很迷人,但它确实适用于那些寻找这种格式的人,他们想要避免使用TABLE。如果它的DATA LAYOUT,TABLE仍然可以在HTML5中工作。
希望这会对某人有所帮助。
答案 9 :(得分:0)
目前你无法做到这一点。
AFAIK这将由CSS Tables涵盖,该规范似乎目前处于“正在进行中”状态。
答案 10 :(得分:0)
您可以尝试此解决方案,在那里您可以找到如何使用div应用colspan the docs
HTML:
<div class="div_format">
<div class="divTable">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell cell_lable">Project Name</div>
<div class="divTableCell cell_value">: Testing Project</div>
<div class="divTableCell cell_lable">Project Type</div>
<div class="divTableCell cell_value">: Web application</div>
</div>
<div class="divTableRow">
<div class="divTableCell cell_lable">Version</div>
<div class="divTableCell cell_value">: 1.0.0</div>
<div class="divTableCell cell_lable">Start Time</div>
<div class="divTableCell cell_value">: 2016-07-10 11:00:21</div>
</div>
<div class="divTableRow">
<div class="divTableCell cell_lable">Document Version</div>
<div class="divTableCell cell_value">: 2.0.0</div>
<div class="divTableCell cell_lable">End Time</div>
<div class="divTableCell cell_value">: 2017-07-10 11:00:23</div>
</div>
<div class="divTableRow">
<div class="divTableCell cell_lable">Document Revision</div>
<div class="divTableCell cell_value">: 3</div>
<div class="divTableCell cell_lable">Overall Result</div>
<div class="divTableCell cell_value txt_bold txt_success">: Passed</div>
</div>
</div>
<div class="divCaptionRow">
<div class="divCaptionlabel">Description</div>
<div class="divCaptionValue">: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore</div>
</div>
</div>
</div>
CSS:
body {
font-family: arial
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.div_format {
width: 100%;
display: inline-block;
position: relative
}
.divTable {
display: table;
width: 100%;
}
.divTableRow {
display: table-row
}
.divTableHeading {
background-color: #EEE;
display: table-header-group
}
.divTableCell,
.divTableHead {
display: table-cell;
padding: 10px
}
.divTableHeading {
background-color: #EEE;
display: table-header-group;
font-weight: bold
}
.divTableFoot {
background-color: #EEE;
display: table-footer-group;
font-weight: bold
}
.divTableBody {
display: table-row-group
}
.divCaptionRow{
display: table-caption;
caption-side: bottom;
width: 100%;
}
.divCaptionlabel{
caption-side: bottom;
display: inline-block;
background: #ccc;
padding: 10px;
width: 15.6%;
margin-left: 10px;
color: #727272;
}
.divCaptionValue{
float: right;
width: 83%;
padding: 10px 1px;
border-bottom: 1px solid #dddddd;
border-right: 10px solid #fff;
color: #5f5f5f;
text-align: left;
}
.cell_lable {
background: #d0d0d0;
border-bottom: 1px solid #ffffff;
border-left: 10px solid #ffffff;
border-right: 10px solid #fff;
width: 15%;
color: #727272;
}
.cell_value {
border-bottom: 1px solid #dddddd;
width: 30%;
border-right: 10px solid #fff;
color: #5f5f5f;
}
答案 11 :(得分:0)
只需使用纯CSS并在“假” colspan中将文本居中即可。
技巧是将行设置为position:relative
,然后在要创建row
的{{1}}中放置“空div”(它们必须具有{{1} },然后将colspan
设置为height
,然后将cell
应用于单元格中的元素(并居中放置,以使其居中)其他绝对元素)。
display:grid
position:absolute
答案 12 :(得分:-1)
即使这是一个老问题,我也想分享我对这个问题的解决方案。
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
<div class="row">
<div class="cell colspan">
<div class="spanned-content">Cell</div>
</div>
</div>
</div>
<style>
.table {
display: table;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
}
.colspan:after {
/* What to do here? */
content: "c";
display: inline;
visibility: hidden;
}
.spanned-content {
position: absolute;
}
</style>
这是fiddle。 这不是一个跨度,解决方案有点hacky,但它在某些情况下很有用。在Chrome 46,Firefox 31和IE 11上测试。
就我而言,我必须以表格方式呈现一些非表格数据,保持列的宽度并为数据的子部分提供标题。
答案 13 :(得分:-2)
使用嵌套表嵌套列间距...
<div class="table">
<div class="row">
<div class="cell">
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="cell">Cell</div>
</div>
</div>
或者使用2个表,其中列跨度覆盖整行......
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
</div>
<div class="table">
<div class="row">
<div class="cell">Cell</div>
</div>
</div>