首页 > 代码库 > CSS

CSS

---恢复内容开始---

选择器语法

有三个问题需要自己学习

  • 组合选择,父子

              个人认为使用组合选择器是要注意加英文的逗号;父子选择其注意加空格

  • 颜色

     16进制颜色:#ffffff每两位代表一种颜色用三种颜色进行组合(red、green、blue)三种表示

  • 单位

字体样式

  • font-family - 类型
  • font-size - 大小
  • font-style - 风格 (normal italic)
  • font-weight - 粗细 (200-700)

文本样式

  • color
  • text-indent - 首行缩进 (em)
  • text-align - 水平对齐 (center left right)
  • vertical-align - 垂直对齐 (top middle bottom) 通常放在img
  • text-decoration - 装饰 (underline overline line-through)
  • line-height - 行高

伪类选择器

  • hover的用法
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
/*
        .box{
            color:#f00;
            font-style:italic;
            font-size:20px;
            text-indent:40px;
            background:#0f0;
            height:100px;
            width:100px;
            transition:all 1s ease;
        }*/
        
        /*.box:hover{
            background:#f00;
            width:100%;
            transition:all 1s ease;
            text-decoration:underline;
        }*/
        .box{
            font-size:20px;
            font-family:"行书";
            font-style:italic;
            color:#fff;
            background:#ff0;
            transition:all ls ease;

        }
        .box:hover {
            color:#00ff78;
            background:#a18d36;
            transition:all 1s ease;

        }
    </style>
</head>
<body>
      <span class="box">盒子1234586</span>
</body>
</html>

 

 

---恢复内容结束---

CSS