0.码仙励志
最珍贵的不是你现在有多好,而是经过努力,每一天的自己都比之前更好
1.内链样式表
<body style="background-color:green; margin:0; padding:0;"></body>
<body style="background-color:red;color:yellow">
使用CSS样式的方式
</body>
2.嵌入式样式表
<style type="text/css"></style>
需要将样式放在<head></head>中
<head>
<meta charset="utf-8">
<style type="text/css">
body{
background-color:red;
color:yellow;
}
</style>
</head>
3.引入式样式表
<link rel="StyleSheet" type="text/css" href="style.css">
<head>
<meta charset="utf-8">
<link rel="stylesheet" style="text/css" href="test.css">
</head>
在同级目录下新建一个Test.css文件
body{
background-color:red;
color:yellow;
}
以上三种同一个效果:
本篇博客来自于麦子学院视频教程的总结以及笔记的整理,仅供学习交流,切勿用于商业用途,如有侵权,请联系博主删除,博主QQ:194760901