Is it possible to add a drop shadow on a vector image that fits the borders?

It’s not possible in Hype, but you can still do it using CSS:

<style>
.shadowfilter {
	-webkit-filter: drop-shadow(12px 12px 7px rgba(0,0,0,0.5));
	filter: url(shadow.svg#drop-shadow);
}
</style>

2 Likes