/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/inline-block-split-3.html
19 строк
340 B
Jack Moffitt
Cargoify servo
09 сен 2014, 06:21
09 сен 2014, 06:21
c6ab60d
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Anonymous text interrupted by a block</title> <style> body { display: block } p { display: inline } span { display: block } </style> </head> <body> <p> This is anonymous text <p>before the SPAN. <span>This is the content of SPAN.</span> This is anonymous text after the SPAN. </p> </p> </body> </html>