mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
f23e18dd6e
--HG-- extra : rebase_source : 4f2c9944b888e452439c845d48dbbaaa70c4d60e
19 lines
338 B
HTML
19 lines
338 B
HTML
<!doctype html>
|
|
<html><head>
|
|
<title>3d effect degradation at 1px with border radius</title>
|
|
<style>
|
|
div {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin: 10px;
|
|
border-width: 1px;
|
|
border-color: red;
|
|
-moz-border-radius: 20px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div style="border-style: inset"></div>
|
|
<div style="border-style: outset"></div>
|
|
</body>
|
|
</html>
|