blob: 3bb717200b492d0948f25db7f23498c5e77d407b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE HTML>
<title>outline and box-shadow</title>
<style>
html, body { margin: 0; padding: 0 }
p {
margin: 50px;
outline: 2px solid blue;
padding: 5px; /* ensure no font overhang */
background: yellow; color: black;
box-shadow: 10px 10px 10px 2px black;
}
</style>
<p>The outline should be adjacent to the background.</p>
|