mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
26 lines
432 B
HTML
26 lines
432 B
HTML
<!DOCTYPE html>
|
|
<html><head><title>flexbox | flexcontainer vs generated content</title>
|
|
<link href="http://opera.com" rel="author" title="Opera Software">
|
|
<style>
|
|
div {
|
|
background: #3366cc;
|
|
height: 4em;
|
|
}
|
|
div::after, p {
|
|
content: "xxx";
|
|
background: yellow;
|
|
margin: 1em;
|
|
width: 200px;
|
|
height: 2em;
|
|
float: left;
|
|
}
|
|
div::after {
|
|
content: "yyy";
|
|
display: block;
|
|
}
|
|
</style>
|
|
|
|
</head><body><div>
|
|
<p>FAIL</p>
|
|
</div>
|
|
</body></html> |