Lines Matching full:width
37 table's width, the width of the columns, and borders or cell
40 The table's width may be specified explicitly with the 'width'
44 In the fixed table layout algorithm, the width of each column is
47 1. A column element with a value other than 'auto' for the 'width'
48 property sets the width for that column.
51 'auto' for the 'width' property sets the width for that column. If
52 the cell spans more than one column, the width is divided over the
58 The width of the table is then the greater of the value of the
59 'width' property for the table element and the sum of the column
96 grpWidth = col->style()->width();
98 Length w = col->style()->width();
201 // only need to calculate the minimum width as the sum of the
202 // cols/cells with a fixed width.
204 // The maximum width is max(minWidth, tableWidth).
207 int tableWidth = m_table->style()->width().isFixed() ? m_table->style()->width().value() - bs : 0;
216 <table style="width:100%; background-color:red"><tr><td>
218 <table style="width:100%; background-color:green; table-layout:fixed"><tr><td>
227 if (m_table->style()->htmlHacks() && m_table->style()->width().isPercent()
234 int tableWidth = m_table->width() - m_table->bordersPaddingAndSpacing();
245 // Percentages are of the table's width, so for example
246 // for a table width of 100px with columns (40px, 10%), the 10% compute
290 // Divide the remaining width among the auto columns.