Home > Windows > Internet Explorer > ver.6 Under fieldset要素直下のフォーム部品にform要素の左右マージンが適用される

fieldset要素直下のフォーム部品にform要素の左右マージンが適用される

fieldset要素の子に当たるinput要素やtextarea要素に、form要素に設定された横方向マージンが適用されてしまう。

例示

<form action="#" style="margin-left:20px;">
    <fieldset>
        <legend>フォーム</legend>
        <input type="text" name="in" size="20" value="input" /><br />
        <textarea name="tx" cols="20" rows="3">textarea</textarea><br />
        <button type="button" name="bt">button</button>
    </fieldset>
</form>
フォーム

input、textarea、buttonの各フォームアイテムを配置しています。左マージンはform要素だけに設定しています。

スクリーンショット

Moz1.0Moz1.0での表示(標準モード)

WinIE6WinIE6.0での表示(標準モード)

補足

フォームアイテム関係の要素がfieldset要素の直下に位置しないように、p要素やdiv要素などを利用してください。

<form action="#" style="margin-left:20px;">
    <fieldset>
        <legend>フォーム</legend>
        <div>
            <input type="text" name="in" size="20" value="input" /><br />
            <textarea name="tx" cols="20" rows="3">textarea</textarea><br />
            <button type="button" name="bt">button</button>
        </div>
    </fieldset>
</form>
フォーム


修正状況

WinIE6.0では標準・互換モードともに不具合の発生が確認されました。

Home > Windows > Internet Explorer > ver.6 Under fieldset要素直下のフォーム部品にform要素の左右マージンが適用される

Search
オススメ書籍
Feeds

Return to page top