https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7df98325f68bad5911813a59d751dbfd6efab382 authored by ffxbld on 09 December 2016, 02:14:37 UTC
Added FENNEC_50_1_0_RELEASE FENNEC_50_1_0_BUILD2 tag(s) for changeset aed42f9ce9f7. DONTBUILD CLOSED TREE a=release
Tip revision: 7df9832
box-sizing-4.html
<!DOCTYPE html>
<html lang="en-US">
<head>
  <title>test of box-sizing</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <style type="text/css">

    body { font-size: 10px; line-height: 1; }
    table { border-spacing: 0; margin: 0 100px; }
    td { border: 1px solid; padding: 1px solid; }

    td > div { width: 100px; height: 350px;
               direction: rtl; position: relative; }

    td#bscontent > div > div { box-sizing: content-box; }
    td#bsborder > div > div { box-sizing: border-box; }

    td > div > div {
      margin-left: 1px;
      border-left: 2px solid;
      padding-left: 4px;
      padding-right: 8px;
      border-right: 16px solid;
      margin-right: 32px;

      background: yellow;
      margin-bottom: 10px;
      position: absolute;
      height: 40px;
      right: 0;
    }

    td > div > div { top: 0px; }
    td > div > div + div { top: 50px; }
    td > div > div + div + div { top: 100px; }
    td > div > div + div + div + div { top: 150px; }
    td > div > div + div + div  + div + div { top: 200px; }
    td > div > div + div + div + div  + div + div { top: 250px; }
    td > div > div + div + div  + div + div  + div + div { top: 300px; }

  </style>
</head>
<body>

<table><tr>

<td id="bscontent"><div>

<!-- box-sizing: content-box -->
<div style="width: auto">A B</div>
<div style="width: -moz-max-content">A B</div>
<div style="width: -moz-min-content">A B</div>
<div style="width: -moz-fit-content">A B</div>
<div style="width: -moz-available">A B</div>
<div style="width: 50px">A B</div>
<div style="width: 60%">A B</div>

</div></td>

<td id="bsborder"><div>
<!-- box-sizing: border-box -->
<div style="width: auto">A B</div>
<div style="width: -moz-max-content">A B</div>
<div style="width: -moz-min-content">A B</div>
<div style="width: -moz-fit-content">A B</div>
<div style="width: -moz-available">A B</div>
<div style="width: 50px">A B</div>
<div style="width: 60%">A B</div>

</div></td>

</tr></table>

</body>
</html>
back to top