扩展一个表列的宽度

时间:2014-02-12 12:11:04

标签: html css html5 css3

我的桌子上有以下CSS: -

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
.table {
  width: 100%;
  margin-bottom: 18px;
  table-layout:fixed;
}
.table th,
.table td {
  padding: 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;

  word-wrap: break-word;


}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}

在我的桌子里面我需要扩展我最后一列的宽度,我尝试为它定义一个自定义宽度,但是它不起作用: -

 <td id = "@item.RESOURCEID" style="width:30%">

目前我的表格如下: - enter image description here

0 个答案:

没有答案