首页 > Web开发 > 详细

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

时间:2019-01-14 10:45:26      阅读:253      评论:0      收藏:0      [点我收藏+]

一,效果图。

技术分享图片

二,代码。

技术分享图片
<!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>
技术分享图片

 

参考资料:《菜鸟教程》

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

原文:https://www.cnblogs.com/yang-guang-girl/p/10265177.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!