css3,css的基础全局运用

浮动

1.浮动起来的盒子不占用位置,浮动了一个盒子下面的标准流的盒子会顶上来

css3,css的基础全局运用css3,css的基础全局运用

可用清除浮动的方法来解决标准流会顶替位置的问题

清除浮动给父盒子加overflow: hidden;

鼠标经过事件

:hover为鼠标经过事件

transform给盒子一个移动效果 可用于鼠标经过事件
.daohang ul li:hover {
    transform: translateY(-5px);
     transition:all 0.4s;
     border-bottom: 2px solid red;
  }

选择器o(╥﹏╥)o

first-child选择ul标签的第一个li

.mokuai ul li:first-child {

        position: relative;
        float: left;
        width: 268px;
        height: 218px;
        
}
​last-child选择最后一个li标签
.mokuai ul li:last-child {
    float: right;
    width: 291px;
    height: 218px;
    border-right: 1px solid #ccc;  
}
css3,css的基础全局运用盒子阴影的做法:
​​
<!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>Document</title>
    <style>
        div {
            width: 200px;
            height: 200px;
            background-color: pink;
            margin: 100px auto;

        }

        div:hover {
            box-shadow: 10px 10px 10px -4px rgba(0, 0, 0, .3);
        }
    </style>
</head>

<body>
    <div></div>
</body>

</html>
css3,css的基础全局运用

css3,css的基础全局运用

​​

上一篇:tensorflow2.x(二)充分利用GPU资源、多进程并行模型


下一篇:View系列:硬件加速,附大厂真题面经