mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
27 lines
539 B
HTML
27 lines
539 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>Border radius clipping</title>
|
|
<link href="mailto:liz@oupeng.com" rel="author" title="zhouli">
|
|
<style>
|
|
#parent{
|
|
border-radius: 15px;
|
|
border: 1px solid blue;
|
|
overflow: hidden;
|
|
width: 300px;
|
|
height: 30px;
|
|
background-color: green;
|
|
}
|
|
#son{
|
|
width: 300px;
|
|
height: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="parent">
|
|
<div id="son"></div>
|
|
</div>
|
|
<script>
|
|
</script>
|
|
|
|
</body></html> |