You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-o-border-radius:5px;-ms-border-radius:5px;gradient:rgba(255,255,255,1)_rgba(255,255,255,0.6)}```
To fix it add ```display:block``` or another css-property after handlers
Correctly work only ```data-url``` replace.
The text was updated successfully, but these errors were encountered:
All handler-css-tags need to be a closed by standard css-tag. Why?
For example:
.b { -vendor-border-radius: 5px; }
>.b{-vendor-border-radius:5px}
but,
.b { -vendor-border-radius: 5px; display: block; /* or any other css-property */ }
And as I seen, the last css-handler-tag is not substituted.
For example:
.b { -vendor-border-radius: 5px; gradient: rgba(255,255,255,1)_rgba(255,255,255,0.6); }
>The text was updated successfully, but these errors were encountered: