--- title: Focus Within tags: visual, interactivity --- Changes the appearance of a form if any of its children are focused. ```html

``` ```css form { border: 3px solid #2d98da; color: #000000; padding: 4px; } form:focus-within { background: #f7b731; color: #000000; } ``` #### Explanation - The psuedo class `:focus-within` applies styles to a parent element if any child element gets focused. For example, an `input` element inside a `form` element. #### Browser support ⚠️ Not supported in IE11 or the current version of Edge. - https://caniuse.com/#feat=css-focus-within