表格单元格宽度大于单元格内容

时间:2017-10-03 14:29:12

标签: css twitter-bootstrap bootstrap-table

我不明白为什么表格单元格宽度大于单元格的内容。

我希望列Artikel的宽度与内容一致。我已经尝试过设置th宽度 - 但这是固定的,它与内容不一致。还有其他解决方案吗?

我的例子是here

enter image description here

1 个答案:

答案 0 :(得分:1)

这是因为来自table的课程bootstrap.min.css,如下所示。

.table {
    width: 100%;
    margin-bottom: 20px;
}

因此,如果删除table类,则结果将根据需要进行。

Codepen Demo

相关问题