如何在 HTML 中制作垂直表格?垂直,我的意思是行将垂直,表标题位于左侧。
我还需要它的方式,以便我可以像在普通表中一样使用
<tr>
访问这些行(在本例中是垂直的)。这是因为我动态获取一行的数据(如 A 行)并将其插入表中。我使用 angularJS 来避免 DOM 操作,所以我不是在寻找用 Javascript 进行复杂的 DOM 操作。
如果您希望
<tr>
显示列,而不是行,请尝试这个简单的 CSS
tr { display: block; float: left; }
th, td { display: block; }
只要您使用单行单元格,这应该显示您想要的内容(表格行为被删除)。
/* single-row column design */
tr { display: block; float: left; }
th, td { display: block; border: 1px solid black; }
/* border-collapse */
tr>*:not(:first-child) { border-top: 0; }
tr:not(:first-child)>* { border-left:0; }
<table>
<tr>
<th>name</th>
<th>number</th>
</tr>
<tr>
<td>James Bond</td>
<td>007</td>
</tr>
<tr>
<td>Lucipher</td>
<td>666</td>
</tr>
</table>
David Bushell 在这里提供了解决方案和实现:https://dbushell.com/2016/03/04/css-only-responsive-tables/
上的演示技巧是在表格行上使用
并display: inline-block;
位于桌体上。white-space: nowrap;
据我所知,没有什么神奇的解决方案可以改变这种情况。 至于旋转(90 度),这很可能会将整个桌子转向一边,类似于一张纸旋转 90 度时的样子,而这不是您想要的(我认为?)。
如果这是可能的(并且现实的),我建议在 HTML 本身中更改它。
正如评论中所指出的,这里没有建议,所以这里有一个使用 jQuery 的基本 javascript 替代方案 [即使这不是您想要的]。在不了解您的经验的情况下,我花时间评论了所有内容,以确保您了解代码的用途。
// Change the selector to suit your needs
$('table').each(function(){
var table = $(this), // Reference each table in the page
header = $('thead', table), // Reference the table head
headings = []; // Set an array for each column
// If the table doesn't have a header, use it's footer for column titles
if(!header.length)
header = $('tfoot', table);
// If there's no header nor footer, skip to the next table
if(!header.length)
continue;
// Loop each heading to get the header value
$('th', header).each(function(){
var heading = $(this).html(); // Each heading value content, including any HTML; use .text() to use the text only
headings.push(heading); // Add heading value to array
});
// Make sure the content is wrapped in a tbody element for proper syntax
if(!$('tbody', table).length)
table.wrapInner('<tbody></tbody>');
// Set counter to reference the heading in the headings array
var x = 0;
// Loop through each row in the table
$('tbody tr').each(function(){
var row = $(this),
label = headings[x];
// Add the heading to the row, as a <th> for visual cues (default: bold)
row.prepend('<th>'+label+'</th>')
// Move to the next value in the headings value
x++;
});
});
您可以使用
<th>
作为行中的第一个单元格。
这是一个小提琴:http://jsfiddle.net/w5nWG/
@vishesh 所以你想在 DOM 准备好后转置你的表格?试试这个http://gist.github.com/pgaertig/2376975
$(function() {
var t = $('#thetable tbody').eq(0);
var r = t.find('tr');
var cols= r.length;
var rows= r.eq(0).find('td').length;
var cell, next, tem, i = 0;
var tb= $('<tbody></tbody>');
while(i<rows){
cell= 0;
tem= $('<tr></tr>');
while(cell<cols){
next= r.eq(cell++).find('td').eq(0);
tem.append(next);
}
tb.append(tem);
++i;
}
$('#thetable').append(tb);
$('#thetable').show();
}
<table>
<tr><td>1</td></tr>
<tr><td>2</td></tr>
<tr><td>3</td></tr>
</table>
table { border-collapse: collapse; }
table tr { display: block; float: left; }
table tr tr{ display: block; float: left; }
table th, table td { display: block; border: none; }
试试这个
<table>
<thead>
<tr>
<th>id</th>
<th>column1</th>
<th>column2</th>
<th>column3</th>
<th>column4</th>
<th>column5</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
</tr>
</tbody>
</table>
CSS:
table, td, th {
border: 1px solid red;
}
thead {
float: left;
}
thead th {
display: block;
background: yellow;
}
tbody {
float: right;
}
也许这个链接没有帮助:将桌子旋转 90 度 这个也不会:http://www.w3.org/TR/html401/struct/tables.html
否则,你可以尝试这个,有另一个用户建议(拒绝和否决):
table {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
这听起来很愚蠢,但是嘿,这并不比不了解“非常基本”的 HTML 4 表格模型更糟糕。