summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-shapes/shape-outside-empty-circle-ref.html
blob: 2f286501354937dcfb729000f510a847dfe39d49 (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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Reference: Shape-outside empty area, float elements around a circle</title>
<style>
  body {
    line-height: 0;
  }
  .container {
    width: 600px;
  }
  box {
    display: inline-block;
    background-color: blue;
    width: 100px;
    height: 20px;
  }
  .shape {
    float: left;
    width: 200px;
    height: 180px;
    shape-outside: circle(90px);
  }
</style>
</head>
<body>
<div class="container">
<div class="shape"></div>
<box></box><br>
<box></box><br>
<box></box><br>
<box></box><br>
<box></box><br>
<box></box><br>
<box></box><br>
<box></box><br>
<box></box><br>
</div>
</body>
</html>