当前位置: 移动技术网 > IT编程>网页制作>CSS > 【代码笔记】Web-CSS-CSS id和Class选择器

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

2019年01月14日  | 移动技术网IT编程  | 我要评论

一,效果图。

二,代码。

复制代码
<!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>
复制代码

 

参考资料:《菜鸟教程》

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网