Computer Science, asked by kliaman609, 5 months ago

Explain why inline Css are suitable for brief style definitions on fewer HTML tags​

Answers

Answered by Anonymous
2

Inline CSS is easy and you know exactly which element the style will apply to. But this is not the preferred method because it mixes the content marked by HTML with the presentation done using CSS. It is also helpful if you want to check the style quickly.

Example:

<h1 style='color=blue;background-color:red;'>Ankitraj707</h1>

Similar questions