Select box

pam-Select-Box turns of the platform native styling of select boxes and adds normalized styling for cross browser compatibility.

Deprecated: Support for select box styling will be dropped after PAM version 1.1. Use custom select instead `pam-Select`.
Default styling
multiple
enables the multi select box.
fluid
enables a select box with fluid width.
borderless
removes the select box borders.
Markup

Toggle example guides Toggle HTML markup

<form pam-Form>
    <div pam-Select-Box="[modifier attribute]">
        <select>
            <option value="geek">Geek</option>
            <option value="nerd">Nerd</option>
            <option value="dork">Dork</option>
        </select>
    </div>
</form>