对于我的学校项目,我必须做出旧的CRM响应。所有的表现在都完全响应,但是有一个小问题。目前的情况如下:https://gyazo.com/d39dfa92f335538b66bdbbf432186a95
我现在正在制作该网站的人询问我是否可以将每个td的表格标题放在下面。我尝试了几件都失败的事情。所以我不知道我现在还能做些什么。 这是我用来使表格响应的css
/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media
only screen and (max-width: 760px),
(min-device-width: 500px) and (max-device-width: 1000px) {
/* 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; }
td {
/* Behave like a "row" */
border: none;
border-bottom: 1px solid #eee;
padding-left: 5%;
}
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;
}
}
我将此网站用于css代码。 https://css-tricks.com/responsive-data-tables/
答案 0 :(得分:0)
我更喜欢flexbox来解决这个问题。我想指出我之前使用过的解决方案:http://inlehmansterms.net/2014/10/11/responsive-tables-with-flexbox/
要了解flexbox的工作方式,你应该研究一下这个漂亮的小游戏:http://flexboxfroggy.com/
请注意,flexbox不能在所有浏览器中使用:http://caniuse.com/#feat=flexbox