what2watch/scss/plugins/input/readme.md

18 lines
322 B
Markdown
Raw Normal View History

2023-09-22 00:43:18 +00:00
## Input
Simple (or not) text form elements:
```html
<fieldset class="flex two">
<label><input type="email" placeholder="Email"></label>
<label><input type="password" placeholder="Password"></label>
</fieldset>
<textarea placeholder="Textarea"></textarea>
```
<style>
input.demo {
margin-bottom: .3em;
}
</style>