mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-17 10:31:38 +00:00
35 lines
801 B
Plaintext
35 lines
801 B
Plaintext
<rml>
|
|
<head>
|
|
<link type="text/rcss" href="/../Tests/Data/style.rcss"/>
|
|
<title>CSS Flexbox Test: gap - intrinsic vertical</title>
|
|
<link href="https://test.csswg.org/suites/css-align-3_dev/nightly-unstable/xhtml1/reference/gap-005-ltr-ref.xht"
|
|
rel="source"/>
|
|
<link href="mailto:argyle@google.com" rel="author" title="Adam Argyle"/>
|
|
<style>
|
|
section {
|
|
background-color: green;
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
section > div {
|
|
background-color: grey;
|
|
color: white;
|
|
}
|
|
|
|
section > div:not(:last-of-type) {
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there are <strong> green lines between boxes</strong>.</p>
|
|
<section>
|
|
<div>Black Panther</div>
|
|
<div>Wonder Woman</div>
|
|
<div>Storm</div>
|
|
<div>Flash</div>
|
|
</section>
|
|
</body>
|
|
</rml>
|