目标
我试图为一系列div .table__color设置样式,其中div的宽度等于来自.table__pct元素数组的数据属性的值。
因此,如果数据属性的值为59,那么.table__color div的宽度为59%,从而显示出水平条形图的外观。
问题
现在,所有.table__color条的宽度都是相同的,因为我只能得到数组中的最后一项,因此所有div的宽度都是59%
scripts.js
// Target all the elements with a class of `table__pct` that contain a data-attribute.
我已经使用div创建了一个表,现在我希望多个列共享一个标题,该标题应该位于列的中心。
通常如下所示:
---Header--- a | b | C | d 1 | 2 | 3 | 4 p | q | R | S HTML:
.div-table {
display: table;
width: auto;
background-color: #eee;
border: 1px solid #666666;
border-spacing: 5px;
/* cellspacing:poor IE support for this */
}
.div-table-ro
下面有一张我想从窗口转换成网页的图片。我设法完成了设计,但是我在网格(I am using data tables in bootstrap)中遇到了一个问题,我不能在图片中做这个设计。
<table>
<tr>
<td>
<div>
<input type="radio" />
Radio Button
</div>
</td>