ionlyseespots / ambient-design

Ambient is a CSS ( flexbox ) framework. Built as a lightweight and modular HTML5 layout methodology.
http://ionlyseespots.github.io/ambient-design/index.html
MIT License
15 stars 3 forks source link

fieldset in flexbox issue #33

Closed ionlyseespots closed 9 years ago

ionlyseespots commented 9 years ago

It's a known issue with fieldset elements in that legend and fieldset are replaced elements.

add role="group" div for semantics

ionlyseespots commented 9 years ago

fixed in 1.3.3 am-layout works with or without fieldset now. If you use fieldset and legend, simply nest a div role="group" wrapper.

<form am-layout="multicolumn">
    <fieldset>
        <div role="group">
            <legend>
                My form
            </legend>
            { ...}
        <div>
    </fieldset>
</form>