Is there a way to apply both aaa
and bbb
classes to an element simultaneously? I tried using class="aaa bbb"
but it didn't work as expected. Any suggestions on how to achieve this?
<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>