html css

来源:互联网 发布:美国队长身材 知乎 编辑:程序博客网 时间:2024/06/05 03:09
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>无标题文档</title>

<!-- 抽取样式,降低耦合-->

<style type="text/css">
    div{
        background-color:#3333CC;
        color:#33CC00
    }
</style>
</head>

<body>
    <div style="background-color:#3333CC; color:#000000">封装行</div>
    <div>封装行</div>
    <span>行内封装</span> <span>行内封装</span>
    <p>段落</p>
    <p>段落</p>
</body>
</html>