【CSS】学习笔记1 使用CSS样式表

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>使用CSS样式表</title>
<!--链接外部样式表-->
<link ral=stylesheet type="text/css" href="slstyle.css">
<!--内部样式表-->
<style type="text/css">
<!--
    body{
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    }
    .style1{
        color: #fbe334;
        font-size: 13px;
    }
    -->
</style>
<!--导入外部样式表-->
    <style type="text/css">
    <!--
        @import slstyle.css
        其他样式的声明
        -->
    </style>
           
</head>
<body>
    <!--内嵌样式-->
    <table style="color: red;margin-right: 220px">
    这是一个表格
    </table>
</body>
</html>

 

posted @ 2021-01-28 11:01  木子欢儿  阅读(100)  评论(0编辑  收藏  举报