For example, I want to apply both aaa
and bbb
to an element, but it seems that only one works at a time. class="aaa bbb"
did not work. How to do it?
<html>
<head>
<style>
.aaa
{
filter: drop-shadow(10px 10px 10px black);
}
.bbb
{
filter: grayscale(100%);
}
</style>
</head>
<body>
<img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png"
class="aaa bbb"
style="margin:40px" />
</body>
</html>