Travis build: 134 [FORCED]

This commit is contained in:
30secondsofcode
2019-01-12 11:41:55 +00:00
parent e5c3de98a9
commit e3944b2ebd
3 changed files with 91 additions and 25 deletions

View File

@ -6,9 +6,7 @@ Vertically centers an element in another.
```html
<div class="ghost-trick">
<div class="ghosting">
<p>Vertically centered without changing the position property.</p>
</div>
<div class="ghosting"><p>Vertically centered without changing the position property.</p></div>
</div>
```
@ -21,7 +19,7 @@ Vertically centers an element in another.
}
.ghosting:before {
content: "";
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;