テーブルの列幅を200pxまたは10%に設定しようとしています。しかし、データベースからデータを取り込むと、列の幅が無視され、可能な限り拡大されているように見えます。ここに私のテーブルhtmlがあります。セットアップテーブルの列幅
<table>
<thead>
<tr>
<th><a href='#'>City</a></th>
<th width='200' class='table_width'><a href='#'>name</a></th>
<th><a href='#'>Agent</a></th>
<th>...
//I have tried class and width attribute. both don't work.
</tr>
</thead>
<tbody>
<tr>
//these column data were popluated from database
<td><?= $row->city; ?></td>
<td width='200' class='table_width'><?= $row->_name; ?></td>
//ignore the width and expand the table cell.
<td><?= $row->agent; ?></td>
<td>...
</tr>
ありがとうございました。私は試しましたが、まだ動作していません。あなたのデモでもテーブルのセル幅はまだまだ広がります。 +1。 – FlyingCat
おっと、更新されたコードを試してください。 – MetalFrog
非常に良い!どうもありがとう!。 – FlyingCat