【CSS 基础】CSS复合选择器

1.复合选择器组成

  1. 后代选择器
  2. 子元素选择器(亲儿子选择器)
  3. 并集选择器
  4. 伪类选择器

代码实例:

DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
  <style>
    /* 后代选择器 */
    ul li {
      color: red;
    }
    /* 子元素选择器--只选择亲儿子 */
    .nav {
      color: green;
    }
    /* 并集选择器 */
    .bear1, p, .pigs li {
      color: pink;
    }
  style>
head>
<body>
  <ul>
    <li>1li>
    <li>2li>
    <li>3li>
  ul>
  <ol>
    <li>1li>
    <li>2li>
    <li>3li>
    <li>4li>
  ol>
  <div class="nav">
    <p>我是儿子p> 
    <a href="#">我是孙子a>
  div>
  <div class="bear1">div>
  <p class="bear2">p>
  <ul class="pigs">
    <li>小猪佩奇li>
    <li>猪爸爸li>
    <li>猪妈妈li>
  ul>
body>
html>

效果:
【CSS 基础】CSS复合选择器_第1张图片

2. 伪类选择器

  1. a:link;
  2. a:visited;
  3. a:hover;
  4. a:active;

代码实例:

DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
  <style>
    /* 1.未访问的链接(把没有点击过/访问过的链接选出来) */
    a:link {
      color: black;
      /* 去除下划线 */
      text-decoration: none;
    }
    /* 2. 点击过/访问过的链接 */
    a:visited {
      color: orange;
    }
    /* 3. 鼠标经过 */
    a:hover {
      color: skyblue;
    }
    /* 4. 鼠标按下没有弹起 */
    a:active {
      color: green;
    }
  style>
head>
<body>
  <a href="#">小猪佩奇a>
body>
html>

你可能感兴趣的:(css,css3,前端)