style属性
style 属性规定元素的行内样式(inline style)。
注意:style 属性将覆盖任何全局的样式设定,例如在 <style>
标签或在外部样式表中规定的样式。
<element style="value">
值 | 描述 |
style_definition | 一个或多个由分号分隔的 CSS 属性和值。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body>
<h1 style="color:green">FishC.com</h1>
<p style="color:#33b084">Change the World By Program</p>
</body>
</html>
Change the World By Program