mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
416 B
HTML
25 lines
416 B
HTML
<!doctype html>
|
|
<html><head>
|
|
<title>Border-radius inheritance</title>
|
|
<style>
|
|
.div1 { width: 100px; height: 100px;
|
|
border: 10px solid black;
|
|
-moz-border-radius: 10px;
|
|
left: 50px;
|
|
top: 50px;
|
|
}
|
|
|
|
div > div {
|
|
width: 40px; height: 40px;
|
|
border: 10px solid black;
|
|
position: absolute;
|
|
left: 40px;
|
|
top: 40px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="div1"><div></div></div>
|
|
</body></html>
|