/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/incremental_float.html
19 строк
353 B
Patrick Walton
layout: Don't touch the inline positions of block children unless they
12 окт 2016, 02:48
12 окт 2016, 02:48
06d9e91
Код
Авторство
О чём код?
<!DOCTYPE html> <style> .float { float: right; } .bad { display: inline-block; background-color: gray; height: 30px; width: 30px; } .bad:hover { opacity: .85; } </style> <div class=float> <a class="bad"></a> </div> <p style="clear: both">Mouse over the preceding gray square. It should change color but remain in place.</p>