Where to put css in HTML

青灯夜游
Release: 2023-02-06 18:16:52
Original
14558 people have browsed it

Where to place css in HTML: 1. Put css in the style attribute of the HTML tag, the syntax is "", the css code can be one or more by Semicolon-separated CSS properties and values; 2. Place the css code in the "> ;".

Where to put css in HTML

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

The location of css in the HTML document:

1. In the style attribute of the HTML tag (inline style)

The style attribute specifies the inline style of the element. The

style attribute will override any global style settings, such as those specified in the

Syntax:

<element style="style_definition">
Copy after login
  • style_definition: One or more CSS properties and values ​​separated by semicolons.

Example:

<h1 style="color:blue; text-align:center">这是标题</h1>
<p style="color:red">这是段落</p>
Copy after login

Where to put css in HTML

##2. The "