Select

Individual form controls automatically receive some global styling. All textual <select>, elements with width: 100%; by default. Wrap labels and controls in .gsui-form-inline for horizontal layout.

Examples

Code Snippet

			
				<div class="gsui-select">
					<label>Select Label</label>
					<select>
						<option>First select</option>
						<option>Option</option>
						<option>Option</option>
					</select>
					<div class="gsui-select-arrow"></div>
				</div>
			
		
Back