summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-values/calc-rounding-001-ref.html
blob: 476e337505b0e21292a84f3fb91472db864716c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
body {
  background: #f3f5f6;
}

div {
  font-size: 15px;
  --width: 401px;
  width: var(--width);
  margin: 20px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

b {
  height: 50px;
  background: red;
  width: calc((var(--width) - 4.5em) / 4); /* .5em gutters */
}

b:not(:last-child) {
  margin-right: 1.5em;
}
</style>
<div><b></b><b></b><b></b><b></b></div>