Some Css code are not support all browsers.then how solve this type problem.....any tools that make all browser friendly code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Some Css code are not support all browsers.then how solve this type problem.....any tools that make all browser friendly code

29th Jul 2019, 10:56 AM
Md Nawab
Md Nawab - avatar
2 Answers
+ 5
You either change the css property, for example, there is opacity: and filter: opacity is the same. Use vendor prefixes, and there is a table which indicates which browsers support properties.
29th Jul 2019, 11:00 AM
Anna/Аня
Anna/Аня - avatar
+ 4
Old browsers don't support css3 properties Write vendor prefixes before the property Like this: -webkit-opacity:0.5; Here is the table Internet explorer:-ms- Chrome:-webkit- Safari:-webkit- Firefox:-moz- Opera:-o- https://www.sololearn.com/learn/CSS/2237/
30th Jul 2019, 11:32 AM
Farhan
Farhan - avatar