Files
30-seconds-of-code/snippets/focus-within.md
2018-10-22 21:12:45 -04:00

52 lines
1.1 KiB
Markdown

### Focus Within
The psuedo class `:focus-within` gives focus to a parent element like a `form` element when `input` elements receive focus.
#### HTML
```html
<form>
<label for="given_name">Given Name:</label>
<input id="given_name" type="text">
<br>
<label for="family_name">Family Name:</label>
<input id="family_name" type="text">
</form>
```
#### CSS
```css
form {
border: 3px solid #2d98da;
color: #000000;
padding: 4px;
}
form:focus-within {
background: #f7b731;
color: #000000;
}
```
#### Demo
<!-- Leave this blank, the build script will generate the demo for you. -->
#### Explanation
<!-- Use a step-by-step (ordered) list if possible. Keep it concise. -->
#### Browser support
<span class="snippet__support-note">⚠️ Not supported in IE11 or the current version of Edge.</span>
<!-- Whenever possible, link a `caniuse` feature which allows the browser support percentage to be displayed.
If no link is provided, it defaults to 99+%. -->
- https://caniuse.com/#feat=css-focus-within
<!-- tags: (separate each by a comma) -->