Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
style
>
.
shadow
{
width:
100
px
;
height:
100
px
;
box-shadow:
0
10
px
8
px
-4
px
yellow
;
background-color:
#cccccc
;
}
</
style
>
</
head
>
<
body
>
<
div
class=
"shadow"
></
div
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <style> .shadow { width: 100px; height: 100px; box-shadow: 0 10px 8px -4px yellow; background-color: #cccccc; } </style> </head> <body> <div class="shadow"></div> </body> </html>