πSelect
Add dropdown select inputs to forms in Webstudio.
Last updated
Was this helpful?
Was this helpful?
Label (for: country)
βββ "Country"
Select (id: country, name: country)
βββ Option (value: "") β "Select a country..."
βββ Option (value: us) β "United States"
βββ Option (value: uk) β "United Kingdom"
βββ Option (value: ca) β "Canada"
βββ Option (value: au) β "Australia"Option (value: "", disabled: true, selected: true)
βββ "Please select..."country=us/* What you can customize */
Select {
border: 1px solid #ccc;
border-radius: 4px;
padding: 8px 12px;
background: white;
font-size: 16px;
}Select (name: languages, multiple: true)
βββ Option (value: en) β "English"
βββ Option (value: es) β "Spanish"
βββ Option (value: fr) β "French"
βββ Option (value: de) β "German"Select (name: category)
βββ Collection (data: categories)
βββ Option (value: category.id)
βββ {category.name}