css介绍
约 191 字小于 1 分钟
2025-06-11
CSS定义
层叠样式表是一种样式表语言,用来描述HTML文档的呈现
书写位置
行内样式
注
键值对:key(属性):value(值)
<p style="color:red">
红色文字
</p>内联样式
<html>
<head>
<style>
/* css 样式书写处 */
</style>
</head>
</html>外链样式
外部样式表引入
index.html
style.css
index.html
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>
测试文字
</p>
</body>
</html>style.css
p {
color: red;
}项目
images存放固定使用的图片素材
upload存放非固定使用的图片素材
iconfont字体图标素材
css
base.css基础公共样式
common.css相同模块的重复样式
index.css首页css样式
index.html首页
