+1 vote
in CSS by
What are the limitations of CSS?

1 Answer

0 votes
by

Disadvantages of CSS are given below:

  1. 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).
  2. Cross Browser issue: Some selectors behave differently in a different browser).
  3. 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
  4.  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.
  5. 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.
  6. There is no parent selector: Currently, Using CSS, you can’t select a parent tag.

Related questions

+1 vote
asked Jul 6, 2021 in CSS by rajeshsharma
0 votes
asked Feb 14 in CSS by DavidAnderson
...