4

モーダル内のウェル内にテーブルを作成しようとしています。コードの一部を次に示します。

<div class="modal-body">
<form class="form-horizontal">
    <form class="well form-inline">
        <label><h5>rtu</h5></label>
        <table class="table table-bordered">
            <tr>
                <th>mid</th>
                <th>type</th>
                <th>inverce</th>
                <th>mbaddr</th>
                <th>din_reg_offset</th>
                <th>din_type</th>
                <th>dout_reg_offset</th>
                <th>dout_type</th>
                <th>ain_reg_offset</th>
                <th>ain_type</th>
                <th>aout_reg_offset</th>
                <th>aout_type</th>
                <th>float_type</th>
            </tr>
            <tr>
                <td><input type="text" id="mid"></td>
                <td><input type="text" id="type"></td>
                <td><input type="text" id="inverce"></td>
                <td><input type="text" id="mbaddr"></td>
                <td><input type="text" id="din_reg_offset"></td>
                <td><input type="text" id="din_type"></td>
                <td><input type="text" id="dout_reg_offset"></td>
                <td><input type="text" id="dout_type"></td>
                <td><input type="text" id="ain_reg_offset"></td>
                <td><input type="text" id="ain_type"></td>
                <td><input type="text" id="aout_reg_offset"></td>
                <td><input type="text" id="aout_type"></td>
                <td><input type="text" id="float_type"></td>
            </tr> 
        </table>
    </form>
</form>

しかし、テーブルは井戸の境界に収まりませんでした。このような: ここに画像の説明を入力

しかし、私はこのようなものが欲しいです: ここに画像の説明を入力 私は何を間違えましたか? ありがとう。

4

2 に答える 2

0

class="input-mini"入力に対してorを使用class="input-small"して、それらを小さくすることができます。ただし、テーブルには常に、入力を含む固定の最小幅があり、well周囲のコンテンツに合わせてサイズが変更されます。小さなブラウザー ウィンドウで問題が発生する場合があります。

于 2012-08-30T18:49:32.947 に答える
0

表のマークアップが正しくありません。この形式に従う必要があります。

<table>
 <tr>
  <th>Month</th>
  <th>Savings</th>
 </tr>
 <tr>
  <td>January</td>
  <td>$100</td>
 </tr>
</table>

( http://www.w3schools.com/tags/tag_table.aspより)

于 2012-08-21T12:25:55.890 に答える