serenity/Tests/LibWeb/Ref/calc-border-radius.html

21 lines
381 B
HTML
Raw Normal View History

<!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>