Web速查-索引

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>

FishC.com

Change the World By Program

视频讲解