summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/border-bottom-left-radius-004-ref.xht
blob: 15732f1c068b5890c7f65d2e7b561408cccde8e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>border-bottom-left-radius: 48px 28px reference</title>
    <style type="text/css">
      div
      {
          width: 200px;
          height: 100px;

          background: orange;
          border: 20px solid teal;
          border-bottom-left-radius: 48px 28px;
      }
    </style>
  </head>
  <body>
    <p>The box should have a border-bottom-left-radius of 48px 28px. The
        horizontal radius should therefore be clearly larger than the
        vertical radius.</p>
    <div></div>
  </body>
</html>