I have a unique snippet of code that generates an element at the bottom of a div to serve as an inventive 'arrow/pointer' pointing down.
Now, I am seeking assistance in tweaking the script so that the 'arrow/pointer' directs towards the left side instead.
Here is the current code:
HTML
<div style="background-image:url('...');">
<div class="mask"></div>
</div>
The CSS for the mask can be found on the following fiddle:
https://jsfiddle.net/hunt0194/gu1sgotd/
I have attempted adjusting values like 'bottom' to 'left', but unfortunately, I haven't been successful in making it work as desired.
This particular piece of code produces two black shapes that act as a form of masking at the base of the div.