- [ CSS入门 ]

三,CSS选择器

2020-12-14  本文已影响0人  好多可乐
作用:

选择(找到)需要添加样式的位置

常用选择器:
具体使用:
  1. 定义类选择器:<p class="xxx">
  2. 引用类选择器:.xxx{}
  3. 引用标签选择器:p{}
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
   /**引用标签选择器*/
    p{
        background-color: red;
        font-size: 40;
    }
  /**引用类选择器*/
    .p1{
        font-family: 隶书;
    }
</style>
</head>
    <p>http://www.imooc.com</p>
    /**定义*/
    <p class="p1">慕课网</p>
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读