美文网首页
CSS选择器(了解)

CSS选择器(了解)

作者: 逻辑演绎法 | 来源:发表于2017-05-14 13:38 被阅读0次

以下是5种选择器
1标签选择器

<!DOCTYPE html>
<html>
  <head>
    <title>05-CSS选择器1</title>
    
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=UTF-8">
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  <!-- css选择器
        标签选择器   
        p{
        }
   -->
    <style type="text/css">
        a{
            color:red;
        }
    </style>
  </head>
  <body>
   <a> This is my HTML page. </a><br>
  </body>
</html>

2类选择器
<pre>
<!DOCTYPE html>
<html>
<head>
<title>07CSS选择器</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>

<style type="text/css">
    .c{
        color:red;
    }
</style>

</head>
<body>
<p class='c'>床前明月光</p>
</body>
</html>
</pre>

3 id选择器

<pre>
<!DOCTYPE html>
<html>
<head>
<title>06CSS选择器</title>

<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
    #one{
        color:red;
    }
</style>

</head>
<body>
<a id='one'> 点我 </a>

</body>
</html>
</pre>

4伪类选择器
<pre>
<!DOCTYPE html>
<html>
<head>
<title>06CSS选择器</title>

<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
    #one:link{
        color:blue;
    }
    #one:visited{
        color:black;
    }
    #one:hover{
        color:white;
    }
    #one:active{
        color:pink;
    }
</style>

</head>
<body>
<a id='one' href="01-结合方式1.html"> 点我 </a>

</body>
</html>
</pre>

5 组合使用选择器
<pre>
<!DOCTYPE html>
<html>
<head>
<title>05-CSS选择器1</title>

<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
    #one,.two,font{
        color:red;
    }
</style>

</head>
<body>

         <a id='one' > 点我 </a><br>
      <p class='two'>点我</p><br>
      <font>点我</font>

</body>
</html>

</pre>

相关文章

  • 学习钢要:样式生效规则

    学习条件 了解css/css3常见选择器 学习目标 了解选择器权重的计算 了解浏览器默认样式 了解样式的继承 了解...

  • CSS权重

    这篇是基于CSS选择器的,如果对选择器不太了解可以先看另一篇CSS选择器 (一)什么是CSS权重? 权重决定了你C...

  • CSS选择器

    CSS 元素选择器CSS 选择器分组CSS 类选择器详解CSS ID 选择器详解CSS 属性选择器详解CSS 后代...

  • 快速了解css

    快速了解css 基础语法: 选择器{属性:值;属性:值} 选择器 基本选择器 id选择器 class选择器 伪类:...

  • 初级了解css3伪类选择器

    在 CSS3 中,选择器是一种模式,用于选择需要添加样式的元素。 先来了解一下css3选择器的分类 css3选择器...

  • CSS选择器

    目录: CSS派生选择器 CSS元素选择器 CSS Id 和 Class选择器 CSS 属性选择器 CSS 派生选...

  • css选择器

    css选择器】 1.css属性选择器 2.css伪类选择器 3.css层次选择器

  • CSS 选择器

    CSS 选择器 CSS 基本选择器及其扩展 CSS 基本选择器 通配符选择器 * 元素选择器 使用标签的名称...

  • Sublime 学习web的css

    html + css + js css引用 css外部样式 css优先级 css的选择器 标签选择器 类选择器 i...

  • CSS选择器

    CSS选择器的作用 CSS 选择器用于定位我们想要给予样式的 HTML 元素。 CSS选择器的类型 CSS选择器大...

网友评论

      本文标题:CSS选择器(了解)

      本文链接:https://www.haomeiwen.com/subject/ktkqxxtx.html