2009-11-10 22:08:38 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html><head>
|
|
|
|
<title>Border-radius inheritance</title>
|
|
|
|
<style>
|
|
|
|
.div1 { width: 100px; height: 100px;
|
|
|
|
border: 10px solid black;
|
2010-09-09 19:21:47 +04:00
|
|
|
border-radius: 10px;
|
2009-11-10 22:08:38 +03:00
|
|
|
left: 50px;
|
|
|
|
top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div > div {
|
|
|
|
width: 40px; height: 40px;
|
|
|
|
border: 10px solid black;
|
|
|
|
position: absolute;
|
2010-09-09 19:21:47 +04:00
|
|
|
border-radius: 0px;
|
2009-11-10 22:08:38 +03:00
|
|
|
left: 40px;
|
|
|
|
top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="div1"><div></div></div>
|
|
|
|
</body></html>
|