Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/calc-margin-block-1.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html>
<head>
<title>CSS Test: Test of margin-*: calc()</title>
<link rel="match" href="calc-margin-block-1-ref.html">
<style type="text/css">
div { border: medium solid green; width: 500px }
p { background: yellow }
</style>
</head>
<body>
<div><p style="margin: calc(10px + 1%) 0 0 0">paragraph with margin</p></div>
<div><p style="margin: 0 calc(10px + 1%) 0 0">paragraph with margin</p></div>
<div><p style="margin: 0 0 calc(10px + 1%) 0">paragraph with margin</p></div>
<div><p style="margin: 0 0 0 calc(10px + 1%)">paragraph with margin</p></div>
<div><p style="margin: calc(30px - 1%)">paragraph with margin</p></div>
</body>
</html>