1 <!DOCTYPE html>
2 <html><head>
3 <title>CSS Test: intrinsic width of width: calc() on blocks</title>
4 <link href="https://dbaron.org/" rel="author" title="L. David Baron">
5 <link href="http://www.w3.org/TR/css3-values/#calc-notation" rel="help">
6 <link href="reference/calc-width-block-intrinsic-1-ref.htm" rel="match">
7 <meta content="" name="flags">
8 <style type="text/css">
9
10 body { font-size: 10px }
11 body > div { float: left; clear: left;
12 margin: 0 0 1px 0; background: blue; color: white; height: 5px }
13 body > div > div > div { width: 200px }
14
15 </style>
16 </head>
17 <body>
18
19 <div><div style="width: calc(50% - 3px)"><div></div></div></div>
20 <div><div style="width: calc(5em - 3px)"><div></div></div></div>
21 <div><div style="width: calc(5em - 0%)"><div></div></div></div>
22 <div><div style="width: calc(50%)"><div></div></div></div>
23 <div><div style="width: calc(50px)"><div></div></div></div>
24 <div><div style="width: calc(25% + 25%)"><div></div></div></div>
25
26
27 </body></html>