我正在使用Chris在CSS-Tricks编写的指南(click here)来创建响应表。我也在尝试在表格中添加内联编辑。
主要CSS:
/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr {
display: block;
}
/* Hide table headers (but not display: none;, for accessibility) */
thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}
tr {
border: 1px solid #ccc;
}
#demoTable td {
/* Behave like a "row" */
border: none;
border-bottom: 1px solid #eee;
position: relative;
padding-left: 50%;
}
td:before {
/* Now like a table header */
position: absolute;
/* Top/left values mimic padding */
top: 6px;
left: 6px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
}
答案 0 :(得分:1)
这是因为当你编辑代码td
时col-xs-12
div有float:left
,所以td
没有达到合适的高度。
试试这段代码:
@media screen only and (max-width:767px){
#demoTable td .col.col-xs-12 {
float: none;
padding: 0;
}
}