diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html b/testing/web-platform/tests/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html new file mode 100644 index 0000000000..80b7db6d38 --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<title>flexbox | justify-content: space-around | single item</title> +<link rel="author" href="http://opera.com" title="Opera Software"> +<style> +div { + background: blue; + margin: 1em 0; + border: 1px solid black; + height: 8em; + width: 30em; +} +span { + background: white; + margin: 1em auto; + width: 6em; + max-width: 6em; + height: 6em; + display: block; +} +</style> + +<div> + <span>one</span> +</div> |