I need to change the margin-top
value of p::before
dynamically on each image click.
Neither of these questions 1 / 2 / 3 / 4 nor this tutorial worked for me since I am changing the margin-top
value not content or colors.
I can't use attr()
because it's not supported for non-string values according to this.
Creating stylesheet or adding scripting the the header isn't a good idea since I can't reach and modify it again so it's creating tens of style tags and rules and it's messing up with my styling.
How can I achieve this?
Thanks in advance
p::after {
top: auto;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: #f9e8a2;
border-width: 15px;
left: 50%;
margin: 28px 0 0 -15px;
}