码迷,mamicode.com
首页 > Web开发 > 详细

CSS

时间:2017-07-22 00:09:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:tle   head   ase   img   进制   strong   through   水平   使用   

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

选择器语法

有三个问题需要自己学习

  • 组合选择,父子

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

  • 颜色

     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

标签:tle   head   ase   img   进制   strong   through   水平   使用   

原文地址:http://www.cnblogs.com/alsely/p/7220062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!