2010-08-11 12:32:53 -07:00
|
|
|
<!DOCTYPE HTML>
|
2010-08-25 03:17:56 -07:00
|
|
|
<title>width: calc() and min-width: calc() on blocks</title>
|
2010-08-11 12:32:53 -07:00
|
|
|
<style>
|
|
|
|
|
|
|
|
body { width: 500px }
|
|
|
|
p { background: green; color: white; margin: 1px 0; font-size: 10px }
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<p style="width: 247px">50% - 3px</p>
|
|
|
|
<p style="width: 247px">25% - 3px + 25%</p>
|
|
|
|
<p style="width: 247px">25% - 3px + 12.5% * 2</p>
|
|
|
|
<p style="width: 247px">25% - 3px + 12.5%*2</p>
|
|
|
|
<p style="width: 247px">25% - 3px + 2*12.5%</p>
|
|
|
|
<p style="width: 247px">25% - 3px + 2 * 12.5%</p>
|
|
|
|
<p style="width: 125px">min(25%, 150px)</p>
|
|
|
|
<p style="width: 100px">min(25%, 100px)</p>
|
|
|
|
<p style="width: 150px">max(25%, 150px)</p>
|
|
|
|
<p style="width: 125px">max(25%, 100px)</p>
|
|
|
|
<p style="width: 150px">min(25%, 150px) + 5%</p>
|
|
|
|
<p style="width: 125px">min(25%, 100px) + 5%</p>
|
|
|
|
<p style="width: 175px">max(25%, 150px) + 5%</p>
|
|
|
|
<p style="width: 150px">max(25%, 100px) + 5%</p>
|
|
|
|
<p style="width: 105px">min(25%, 150px) - 2em</p>
|
|
|
|
<p style="width: 80px">min(25%, 100px) - 2em</p>
|
|
|
|
<p style="width: 130px">max(25%, 150px) - 2em</p>
|
|
|
|
<p style="width: 105px">max(25%, 100px) - 2em</p>
|
|
|
|
<p style="width: 250px">30% + 20%</p>
|
|
|
|
<p style="width: 250px">30% + max(20%, 1px)</p>
|
|
|
|
<p style="width: 250px">max(25%, 50%)</p>
|
|
|
|
<p style="width: 125px">max(25%, 50%)</p>
|