The Cascading Style Sheets (CSS) describes how HTML elements are to be displayed on screen, paper, or in other media, it styles and formats the html element.
CSS3 has come up with a media query feature. It supports RWD (Responsive Web Design) and does help in making a website responsive.
Below are the different types of CSS.
• Inline – It adds the CSS to the HTML elements.
• Embedded/Internal – It adds the CSS styles using the "STYLE" attribute inside the "HEAD".
• Linked/External – It adds an external CSS file to the HTML document.
How to override inline CSS..?
By using !important; rule in the external style we can override inline CSS.
Example: p{ color: red !important;}