mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
18 lines
No EOL
457 B
HTML
18 lines
No EOL
457 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Flexbox Test: flex-wrap flexes widths after line breaking</title>
|
|
<link rel="author" title="Alan Stearns" href="mailto:stearns@adobe.com">
|
|
<style>
|
|
.container {
|
|
width: 150px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is a green rectangle and no red.</p>
|
|
<div class="container"></div>
|
|
</body>
|
|
</html> |