servo/tests/wpt/css-tests/css-values-3_dev/html/reference/calc-margin-block-1-ref.htm

22 lines
No EOL
675 B
HTML

<!DOCTYPE html>
<html><head>
<title>CSS Reference: Test of margin-*: calc()</title>
<link href="http://dbaron.org/" rel="author" title="L. David Baron">
<meta content="" name="flags">
<style type="text/css">
div { border: medium solid green; width: 500px }
p { background: yellow }
</style>
</head>
<body>
<div><p style="margin: 15px 0 0 0">paragraph with margin</p></div>
<div><p style="margin: 0 15px 0 0">paragraph with margin</p></div>
<div><p style="margin: 0 0 15px 0">paragraph with margin</p></div>
<div><p style="margin: 0 0 0 15px">paragraph with margin</p></div>
<div><p style="margin: 25px 25px 25px 25px">paragraph with margin</p></div>
</body></html>