20 lines
427 B
HTML
20 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS box-shadow Test Reference</title>
|
|
<link rel="author" title="fmalita" href="mailto:fmalita@chromium.org">
|
|
<style type="text/css">
|
|
html {
|
|
background-color: white;
|
|
}
|
|
body {
|
|
position: relative;
|
|
box-shadow: 0 0 0 4px red;
|
|
height: 300px;
|
|
width: 600px;
|
|
margin: 20px auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body></body>
|
|
</html>
|