<h3>Building Custom Selects</h3>
<p>Sometimes you need to let people select a single item from a long list of options. This is what <code><select></code> elements are for. We've taken these a step further by including our own custom style that looks a lot better than inconsistent browser defaults. You can set any of the <code><option></code> elements to <code><option disabled></code> to make them unable to select. Custom selects are built like you'd expect:</p>
+ <p>For those who may want to apply custom styles to a specific dropdown, any classes on the <code><select></code> element will be appended to the generated <code><div class="custom dropdown"></code> element.</p>
<%= code_example '
<form class="custom">
<form class="custom">
<label for="customDropdown2">Default Example</label>
- <select id="customDropdown2" class="custom cool class here">
+ <select id="customDropdown2">
<option DISABLED>This is a dropdown</option>
<option>This is another option</option>
<option>This is another option too</option>