1

selectメニューを?の中に入れることは許容できるhtml文法legendですか?

<fieldset>
    <legend>
        <select id="leg_sel">
           <option>asdf</option>    
           <option>asdf</option>  
           <option>asdf</option>  
        </select>     
    </legend>
    Name: <input type="text"><br>
    Email: <input type="text"><br>
    Date of birth: <input type="text">
</fieldset>​

http://jsfiddle.net/loren_hibbard/xFpkp/

4

1 に答える 1

3

はい、文法はそれを可能にします。HTML 4.01仕様から

<!ELEMENT LEGEND - - (%inline;)*       -- fieldset legend -->

これは、すべてのインラインコンテンツが許可され、インラインコンテンツにフォームフィールドが含まれることを意味します。

それが有用であるか意味的に正しいかは別の問題です。要素は、legend囲んでいるのキャプションとして定義されますfieldset

于 2012-11-08T17:58:33.197 に答える