【代码笔记】Web-CSS-CSS id和Class选择器

2019-01-15 07:01:40来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一,效果图。

二,代码。

复制代码
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>CSS id和class选择器</title>
    <style>
    #para1 {
        text-align: center;
        color: red;
    }
    
    .center {
        text-align: center;
    }
    
    p.center {
        text-align: right;
    }
    </style>
</head>

<body>
    <p id="para1">hello</p>
    <p>this paragraph is not affected by the style.</p>
    <h1 class="center">标题居中</h1>
    <p class="center">段落居中</p>
</body>

</html>
复制代码

 

参考资料:《菜鸟教程》


原文链接:https://www.cnblogs.com/yang-guang-girl/p/10265177.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:15个新鲜出炉的 Photoshop 文本效果教程

下一篇:bootstrap网站后台从设计到开发