+++ title = "Select" description = "List a group of options in a drop-down menu." categories = ["experience"] tags = [] html_attributes = ["name", "class", "disabled", "form"] custom_attributes = ["body"] snippets_used = ["label", "form group"] [[copyright]] owner = "Josh Habdas" date = "2019" license = "agpl-3.0-or-later" +++ Basic usage: ```html {{}} {{< /hackcss-select */>}} ``` {{< hackcss-select >}} {{< /hackcss-select >}} With [Label](../label) inside [Form Group](../form-group): ```html {{}} {{< hackcss-label for="pool" text="Mining pool:" />}} {{< hackcss-select id="pool" name="pool" >}} {{< /hackcss-select >}} {{< /hackcss-formgroup */>}} ``` {{< hackcss-formgroup name="poolgroup" >}} {{< hackcss-label for="pool" text="Mining pool:" />}} {{< hackcss-select id="pool" name="pool" >}} {{< /hackcss-select >}} {{< /hackcss-formgroup >}}