I am using react and came across a situation where I needed a fallback CSS property.
Normal CSS code:
.grid{
position:sticky;
position: -webkit-sticky;
}
Currently, I am getting it done by using two different classes and adding both the classes to the component (using classnames
library).
Like this:
<Grid className={classnames(c1,c2)}/>
where c1
and c2
both have position property but with different values.
My question being that am I doing it in the right manner? If not, Is there any workaround?