Twitter bootstrap 在引导中设置宽度

Twitter bootstrap 在引导中设置宽度,twitter-bootstrap,button,width,html-table,Twitter Bootstrap,Button,Width,Html Table,我有这个表格,我想让点按钮单元格的宽度等于按钮的宽度。 我怎样才能做到这一点? 而且我会让整个细胞没有边框,没有背景色,但我不知道怎么做。我想有一个引导类 德国福查 概念 蒙托 德塔勒 2016年8月22日 视距 1800 1000个视距 要将dots按钮单元格的宽度设置为按钮宽度,请从最后一个td中删除类pull right 要使整个单元格不带边框和背景色,请使用css编写: td{ text-align:center; border:none!important; bac

我有这个表格,我想让点按钮单元格的宽度等于按钮的宽度。 我怎样才能做到这一点? 而且我会让整个细胞没有边框,没有背景色,但我不知道怎么做。我想有一个引导类


德国福查
概念
蒙托
德塔勒

2016年8月22日

视距

1800

1000个视距

  • 要将dots按钮单元格的宽度设置为按钮宽度,请从最后一个
    td
    中删除类
    pull right

  • 要使整个单元格不带边框和背景色,请使用css编写:

     td{
      text-align:center;
      border:none!important;
      background:transparent;
      color:#fff;
     }
    
     table{
      background:transparent!important;
     }
    
  • 如果你想从th单元格中删除边框,也可以使用同样的css

    这里有工作

     td{
      text-align:center;
      border:none!important;
      background:transparent;
      color:#fff;
     }
    
     table{
      background:transparent!important;
     }