Login
Remember
Register
Ask a Question
What are the limitations of CSS?
+1
vote
asked
Jul 6, 2021
in
CSS
by
rajeshsharma
What are the limitations of CSS?
limitations-css
css-drawbacks
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 6, 2021
by
rajeshsharma
Disadvantages of CSS are given below:
Browser Compatibility: Some style selectors are supported and some are not. We have to determine which style is supported or not using the @support selector).
Cross Browser issue: Some selectors behave differently in a different browser).
Come in different levels- There’s CSS, CSS 1 up to CSS3, which has resulted in confusion among developers and web browsers. One type of CSS should be enough. It would be preferable than having to choose which CSS level to use
Fragmentation- With CSS, what works with one browser may not always work with another. This is why web developers have to test for compatibility, running the program across multiple browsers before a website is set live. If only people use Mozilla or Chrome, but they don’t.
Lack of security- Because it is an open text-based system, CSS doesn’t have the built-in security that will protect it from being overridden. Anyone who has a read/write access to a website can change the CSS file, alter the links or disrupt the formatting, whether by accident or design.
There is no parent selector: Currently, Using CSS, you can’t select a parent tag.
...