Travis build: 132 [FORCED]

This commit is contained in:
30secondsofcode
2019-01-12 11:35:08 +00:00
parent 004fddfc6d
commit c3982fe611
3 changed files with 127 additions and 48 deletions

View File

@ -7,11 +7,8 @@ Changes the appearance of a form if any of its children are focused.
```html
<div class="focus-within">
<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">
<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>
</div>
```
@ -21,7 +18,7 @@ Changes the appearance of a form if any of its children are focused.
```css
form {
border: 3px solid #2d98da;
color: #000000;
color: #000000;
padding: 4px;
}