Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title>CSS Reference: width: calc() and min-width: calc() on blocks</title>
5 <link rel="author" title="L. David Baron" href="http://dbaron.org/">
6 <meta name="flags" content="">
7 <style type="text/css">
9 body { width: 500px }
10 p { background: green; color: white; margin: 1px 0; font-size: 10px }
12 </style>
13 </head>
14 <body>
16 <p style="width: 247px">50% - 3px</p>
17 <p style="width: 247px">25% - 3px + 25%</p>
18 <p style="width: 247px">25% - 3px + 12.5% * 2</p>
19 <p style="width: 247px">25% - 3px + 12.5%*2</p>
20 <p style="width: 247px">25% - 3px + 2*12.5%</p>
21 <p style="width: 247px">25% - 3px + 2 * 12.5%</p>
22 <p style="width: 250px">30% + 20%</p>
23 </body>
24 </html>