This article introduces to you a brief introduction to the three methods introduced in CSS. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
There are three ways to introduce CSS: internal style sheet, inline style (inline style) sheet, external style sheet, of course, you can also use multiple styles
<p style="color:red;font-size:20px">内联样式表</p >
Inline style unloads the style directly into the html code line. It is generally only used when this style is only applied to the current element. Others Try not to use it under certain circumstances.
<style> p { color: blue; font-size: 20px } </style>
The internal style sheet is generally written in the HTML header, using