- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Combining the drop-shadow Filters</title>
<link href="course.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="bubble">Ccccombo!</div>
</body>
</html>
CSS
.bubble {
}
You’ve gone to a different page
Goalscompleted
0
- For the
.bubble
block, apply thedrop-shadow
filter with a value of20px 20px 0px # 0074d9
, - and then change the horizontal offset of the shadow in the filter to the value
200px
. - Add the second filter
drop-shadow (0px 100px 0px #2ecc40)
to the rule.
Comments