Newer
Older
minerva / Tests / LibWeb / Ref / calc-border-radius.html
@minerva minerva on 13 Jul 381 bytes Initial commit
<!DOCTYPE html>
<html>
<head>
    <link rel="match" href="reference/calc-border-radius-ref.html" />
    <style>
        .box {
            width: 200px;
            height: 200px;
            background-color: lightblue;
            border-radius: calc(2 * 10px);
            border: 2px solid black;
        }
    </style>
</head>
<body>

<div class="box"></div>

</body>
</html>