CSS(b站学习记录)

本文详细介绍了CSS的基础知识,包括选择器、布局技巧(如盒子模型、浮动和定位)、美化元素(颜色、字体、阴影等)、动画效果,以及CSS的历史发展和优势。此外,还涵盖了CSS的导入方式、优先级和几种关键选择器的应用,有助于快速理解和实践CSS。
摘要由CSDN通过智能技术生成

1、CSS的简单介绍

前端三要素:HTML+CSS+JS

结构+表现+交互

什么是CSS?

如何学习

1.css是什么

2.css怎么用(快速入门)

3.css选择器(重点+难点)

4.美化网页(文字,阴影,超链接,渐变…)

5.盒子模型

6.浮动

7.定位

8.网页动画(特效效果)

工具网站:菜鸟教程

2、什么是CSS和发展史

什么是CSS

Cascading Style Sheets层叠级联样式表

css:表现(美化网页)

字体,颜色,边距,高度,宽度,背景图片,网页定位,网页浮动…

发展史

CSS1.0

CSS2.0 DIV(块)+ CSS,HTML与CSS结构分离的思想,网页变得简单,SEO

CSS2.1 浮动,定位

CSS3.0 圆角,阴影,动画… 浏览器兼容性

3、CSS的快速入门及优势

基本入门:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    
    <!--规范,style里写css代码,每一个声明最好分号结尾
    语法:
        选择器{
            声明1;
            声明2;
            声明3;
        }
    
    
    -->
    <style>
        h1{
            color: red;
        }
    </style>
    
    
</head>
<body>

<h1>我是标题</h1>


</body>
</html>

建议使用这种方式(单独写一个css文件,用link标签连接)

css的优势:

1、内容和表现分离

2、网页结构表现统一,可以复用

3、样式十分的丰富

4、建立使用独立于html的css文件

5、利用SEO,容易被搜索引擎收录

4、四种CSS导入方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--内部样式-->
    <style>
        h1{
            color: aqua;
        }
    </style>
    
    <!--外部样式-->
    <link rel="stylesheet" href="css/style.css">

</head>
<body>

<!--优先级:就近原则-->

<!--行内样式:在标签元素中,编写一个style属性,编写样式即可-->
<h1 style="color: lightpink">我是标题</h1>

</body>
</html>

拓展:外部样式两种写法

  • 链接式:
<!--外部样式-->
<link rel="stylesheet" href="css/style.css">
  • 导入式:

@import是CSS2.1特有的

<!--导入式-->
<style>
    @import url("css/style.css");
</style>

5、三种基本选择器-重要

作用:选择页面上的某一个或者某一类元素

5.1、基本选择器

1、标签选择器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        /*标签选择器,会选择到页面上所有的这个标签*/
        h1{
            color: #cbee11;
            background: rgba(221, 67, 235, 0.33);
            border-radius: 23px;
        }
        p{
            font-size: 80px;
        }
    </style>

</head>
<body>

<h1>学Java</h1>
<h1>不准学Java</h1>
<p>狂神说</p>


</body>
</html>

2、类选择器 class

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        /*类选择器的格式:.类的名称
        好处:可以多个标签归类,是同一个class
        */
        .Gai{
            color: aqua;
        }
        .Hao{
            color: blanchedalmond;
        }

    </style>

</head>
<body>

<h1 class="Gai">标题1</h1>
<h1 class="Hao">标题2</h1>
<h1 class="Gai">标题3</h1>

<p class="Hao">p标签</p>

</body>
</html>

3、id选择器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        /*id选择器:id必须保证全局唯一
          #id名称{}
        */
        #Gai{
            color: #ff9af9;
        }
    </style>

</head>
<body>

<h1 id="Gai">标题1</h1>
<h1>标题2</h1>
<h1>标题3</h1>
<h1>标题4</h1>
<h1>标题5</h1>

</body>
</html>

多个标签标注同一个id会报错,但网页依旧会显示该变动

        #Gai{
            color: #ff9af9;
        }
    </style>

</head>
<body>

<h1 id="Gai">标题1</h1>
<h1 id="Gai">标题2</h1>
<h1>标题3</h1>
<h1>标题4</h1>
<h1>标题5</h1>

</body>

有类选择器和id选择器使用标签选择器:

        #Gai{
            color: #ff9af9;
        }

        .style1{
            color: aquamarine;
        }
        
        h1 {
            color: #ff9d40;
        }

    </style>

</head>
<body>

<h1 id="Gai">标题1</h1>
<h1 class="style1">标题2</h1>
<h1 class="style1">标题3</h1>
<h1>标题4</h1>
<h1>标题5</h1>

不遵循就近原则,id选择器>class选择器>标签选择器

6、层次选择器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

    <p>p1</p>
    <p>p2</p>
    <p>p3</p>
    <ul>
        <li>
            <p>p4</p>
        </li>
        <li>
            <p>p5</p>
        </li>
        <li>
            <p>p6</p>
        </li>
    </ul>

</body>
</html>

1、后代选择器:在某个元素的后面

/*后代选择器*/
        body p{
            background: aqua;
        }

2、子选择器 一代,儿子

/*子选择器*/
        body>p{
            background: #ff9af9;
        }

3、相邻兄弟选择器 同辈(选取标记的标签下面一个同辈的执行)

/*相邻兄弟选择器:只有一个,相邻(向下)*/
        .active + p{
            background: red;
        }

<p class="active">p1</p>

4、通用选择器

/*通用选择器*/
        .active~p{
            background: cyan;
        }

	<p class="active">p1</p>
    <p>p2</p>

    <p class="active">p7</p>
    <p>p8</p

通用兄弟选择器:当前选中所有元素的向下的所有兄弟

7、结构伪类选择器

/*ul的第一个子元素*/
        ul li:first-child{
            background: #ff9af9;
        }

        /*ul的最后一个子元素*/
        ul li:last-child{
            background:aqua;
        }

/*选中 p1:定位到父元素,选择当前的第一个元素
选择当前p元素的父级元素,选中父级元素的第一个,并且是当前元素(就是冒号前面那个元素)才能生效
*/
p:nth-child(1){
	background: #2225ff;
}
        
/*这个定位更精确,不会被其他类型标签迷惑*/
p:nth-of-type(2){
	background: #ff9d40;
}

ps:如果有多个ul,ul里也有li标签,那么所有ul里的li标签都会生效

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <!--避免使用class,id选择器-->
    <style>
        /*ul的第一个子元素*/
        ul li:first-child{
            background: #ff9af9;
        }

        /*ul的最后一个子元素*/
        ul li:last-child{
            background:aqua;
        }

        /*选中 p1:定位到父元素,选择当前的第一个元素
        选择当前p元素的父级元素,选中父级元素的第一个,并且是当前元素(就是冒号前面那个元素)才能生效
        */
        p:nth-child(1){
            background: #2225ff;
        }

        /*这个定位更精确,不会被其他类型标签迷惑*/
        p:nth-of-type(2){
            background: #ff9d40;
        }
    </style>

</head>
<body>

    <p>p1</p>
    <p>p2</p>
    <p>p3</p>
    <ul>
        <li>li1</li>
        <li>li2</li>
        <li>li3</li>
    </ul>


</body>
</html>

8、属性选择器-重要

常用

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        .demo a{
            float: left;
            display: block;
            height: 50px;
            width: 50px;
            border-radius: 10px;
            background: aqua;
            text-align: center;
            color: #ffdf66;
            text-decoration: none;
            margin-right: 7px;
            font:bold 20px/50px Arial;
        }
    </style>

</head>
<body>

<p class="demo">
    <a href="http://www.baidu.com" class="links item first" id="first">1</a>
    <a href="" class="links item active" target="_blank" title="test">2</a>
    <a href="images/123.html" class="links item">3</a>
    <a href="images/123.png" class="links item">4</a>
    <a href="images/123.jpg" class="links item">5</a>
    <a href="abc" class="links item">6</a>
    <a href="/a.pdf" class="links item">7</a>
    <a href="/abc.pdf" class="links item">8</a>
    <a href="abc.doc" class="links item">9</a>
    <a href="abcd.doc" class="links item last">10</a>
</p>


</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        .demo a{
            float: left;
            display: block;
            height: 50px;
            width: 50px;
            border-radius: 10px;
            background: aqua;
            text-align: center;
            color: #ffdf66;
            text-decoration: none;
            margin-right: 7px;
            font:bold 20px/50px Arial;
        }

        /*属性名,  属性名 = 属性值(正则)*/
        /*存在id属性的元素
        a[]{}
        */
        /*a[id]{*/
        /*    background: #ff9af9;*/
        /*}*/

        /*id=first的元素*/
        /*a[id=first]{*/
        /*    background: #d25eff;}*/

        /* *=:包含这个元素*/
        /*a[class*="links"]{*/
        /*    background: #ff9af9;*/
        /*}*/

        /*选中href中以http开头的
        ^=:以这个开头
        */
        /*a[href^=http]{*/
        /*    background: #cbee11;*/
        /*}*/

        a[href$=pdf]{
            background: #ff4e35;
        }

    </style>

</head>
<body>

<p class="demo">
    <a href="http://www.baidu.com" class="links item first" id="first">1</a>
    <a href="" class="links item active" target="_blank" title="test">2</a>
    <a href="images/123.html" class="links item">3</a>
    <a href="images/123.png" class="links item">4</a>
    <a href="images/123.jpg" class="links item">5</a>
    <a href="abc" class="links item">6</a>
    <a href="/a.pdf" class="links item">7</a>
    <a href="/abc.pdf" class="links item">8</a>
    <a href="abc.doc" class="links item">9</a>
    <a href="abcd.doc" class="links item last">10</a>
</p>


</body>
</html>

常用4个等于符号:=、*=、^=、$=

9、CSS的作用及字体样式

美化网页元素

1、为什么要美化网页元素?

1)、有效的传递页面信息

2)、美化网页,才能吸引用户

3)、页面主题

4)、提高用户体验

span标签:重点要突出的字,使用span套起来

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        #title1{
            font-size: 50px;
            color: #ff9af9;
        }
    </style>

</head>
<body>

一起学习 <span id="title1">Java</span>

</body>
</html>

2、字体样式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <!--
    font-family:字体样式
    font-size:字体大小
    font-weight:字体粗细

    -->
    <style>
        body{
            font-family: "萝莉体 第二版";
        }
        h1{
            font-size: 40px;
            color: aqua;
        }
        .p1{
            font-weight: bolder;
        }
    </style>

</head>
<body>

<h1>背景设定</h1>

<p class="p1">
    学园都市由统括理事会会长亚雷斯塔·克劳利花费数十年建立,主要由大大小小的学校和研究机构构成,八成的居民都是学生。学园都市拥有世界上最尖端的科技,是科学阵营的领导者,在学园都市中拥有世界最强的超高度并列演算电脑"树形图设计者"监视学生们的一举一动。学生们通过接受能力开发可以获得超能力,不乏有战斗力超强的角色。
</p>

<p>
    茵蒂克丝拥有完全记忆能力,脑袋里装有十万三千本魔导书,为了防止茵蒂克丝与他人太过亲近,教会每隔一年就会清除她的记忆。故事开始一年前,茵蒂克丝刚刚被清除记忆,已经失去记忆的她不认得身边的史提尔·马格努斯和神裂火织,反而以为两人是来夺取自己脑内存储的魔导书的,因此开始逃亡,在途中失足跌落,挂在了上条当麻宿舍的阳台上。
</p>

<p>
    暑假的一天,当一位"无能力者"的少年,在自家阳台遇上从天而降,掌握十万三千本究极魔法书的少女,故事就从这里开始了。
</p>

</body>
</html>

10、文本样式

1、颜色 color(rgb、rgba)

2、对齐方式 text-align = center

3、首行缩进 text-indent: 2em

4、行高 line-height 单行文字上下居中!line-height=height

5、装饰 text-decoration(上划线:overline、中划线:line-through、下划线:underline、a标签去默认下划线:none)

6、文本图片水平对齐:vertical-align: middle

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <!--
    颜色:
        单词
        RGB 0~f
        RGBA    A:0~1
    text-align:排版,位置
    text-indent:首行缩进
    行高和块的高度一致就可以上下居中
    -->
    <style>
      h1{
          color: rgba(0,255,88,0.2);
          text-align: center;
      }
      .p1{
          text-indent: 2em;
      }
      #1{
          background: aqua;
          height: 300px;
          line-height: 300px;
      }
      /*上中下划线*/
        .l1{
            text-decoration: underline;
        }
        .l2{
            text-decoration: line-through;
        }
        .l3{
            text-decoration: overline;
        }

    </style>

</head>
<body>

<p class="l1">123123</p>
<p class="l2">123123</p>
<p class="l3">123123</p>

<h1>背景设定</h1>

<p class="p1">
    学园都市由统括理事会会长亚雷斯塔·克劳利花费数十年建立,主要由大大小小的学校和研究机构构成,八成的居民都是学生。学园都市拥有世界上最尖端的科技,是科学阵营的领导者,在学园都市中拥有世界最强的超高度并列演算电脑"树形图设计者"监视学生们的一举一动。学生们通过接受能力开发可以获得超能力,不乏有战斗力超强的角色。
</p>

<p>
    茵蒂克丝拥有完全记忆能力,脑袋里装有十万三千本魔导书,为了防止茵蒂克丝与他人太过亲近,教会每隔一年就会清除她的记忆。故事开始一年前,茵蒂克丝刚刚被清除记忆,已经失去记忆的她不认得身边的史提尔·马格努斯和神裂火织,反而以为两人是来夺取自己脑内存储的魔导书的,因此开始逃亡,在途中失足跌落,挂在了上条当麻宿舍的阳台上。
</p>

<p id="1">
    暑假的一天,当一位"无能力者"的少年,在自家阳台遇上从天而降,掌握十万三千本究极魔法书的少女,故事就从这里开始了。
</p>

</body>
</html>

11、文本阴影和超链接伪类

阴影:

#school{
        text-shadow: #ff9af9 5px 3px 3px;
    }

颜色、下偏多少、右偏多少(负数反向)、阴影半径

超链接伪类:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>

<style>
    /*默认的颜色*/
    a{
        text-decoration: none;
        color: black;
    }
    /*鼠标悬浮的状态(只需要记住它)*/
    a:hover{
        color: aqua;
        text-decoration: underline;
        font-size: 30px;
    }
    /*鼠标按住不释放的状态*/
    a:active{
        color: #2225ff;
        font-size: 10px;
    }
    #school{
        text-shadow: #ff9af9 5px 3px 3px;
    }
</style>

<body>

<a href="#">
    <img src="images/绘里.jpeg" alt="" height="450" width="250">
</a>
<p>
    <a href="#">绘里</a>
</p>
<p>
    <a href="">所属:缪斯</a>
</p>
<p id="school">
    女高中生
</p>

</body>
</html>

12、列表样式练习

HTML:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>列表样式</title>
    <link rel="stylesheet" href="CSS/style.css" type="text/css">
</head>
<body>

<div id="nav">
    <h2 class="title">全部商品分类</h2>
    <ul>
        <li><a href="#">图书</a>&nbsp;&nbsp;<a href="#">音像</a>&nbsp;&nbsp;<a href="#">数字商品</a></li>
        <li><a href="#">家用电器</a>&nbsp;&nbsp;<a href="#">手机</a>&nbsp;&nbsp;<a href="#">数码</a></li>
        <li><a href="#">电脑</a>&nbsp;&nbsp;<a href="#">办公</a></li>
        <li><a href="#">家居</a>&nbsp;&nbsp;<a href="#">家装</a>&nbsp;&nbsp;<a href="#">厨具</a></li>
        <li><a href="#">服饰鞋帽</a>&nbsp;&nbsp;<a href="#">个性化妆</a></li>
        <li><a href="#">礼品箱包</a>&nbsp;&nbsp;<a href="#">钟表</a>&nbsp;&nbsp;<a href="#">珠宝</a></li>
        <li><a href="#">食品饮料</a>&nbsp;&nbsp;<a href="#">保健食品</a></li>
        <li><a href="#">彩票</a>&nbsp;&nbsp;<a href="#">旅行</a>&nbsp;&nbsp;<a href="#">充值</a>&nbsp;&nbsp;<a href="#">票务</a></li>
    </ul>
</div>


</body>
</html>

CSS:

#nav{
    width: 250px;
}

.title{
    font-size: 18px;
    font-weight: bold;
    text-indent: 1em;
    line-height: 30px;
    background: aqua;
}
/*ul li*/
/*
list-style:
    none    去掉原点
    circle  空心圆
    decimal 有序数字
    square  正方形
 */
ul{
    background: whitesmoke;
}
ul li{
    height: 30px;
    list-style: none;
    text-indent: 1em;
}
a{
    text-decoration: none;
    font-size: 14px;
    color: black;
}
a:hover{
    color: #ff9af9;
    text-decoration: underline;
}

13、背景图片应用及渐变

1、背景

背景颜色

背景图片


#nav{
    width: 250px;
}

.title{
    font-size: 18px;
    font-weight: bold;
    text-indent: 1em;
    line-height: 30px;
    background: aqua url("../images/箭头向下.jpg") 270px 10px no-repeat;
    background-size: 9px 6px;
}
/*ul li*/
/*
list-style:
    none    去掉原点
    circle  空心圆
    decimal 有序数字
    square  正方形
 */
ul{
    background: whitesmoke;
}
ul li{
    height: 30px;
    list-style: none;
    text-indent: 1em;
    background-image: url("../images/箭头向下.jpg");
    background-size: 10px 16px;
    background-repeat: no-repeat;
    background-position: 190px 2px;
}
a{
    text-decoration: none;
    font-size: 14px;
    color: black;
}
a:hover{
    color: #ff9af9;
    text-decoration: underline;
}
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>列表样式</title>
    <link rel="stylesheet" href="CSS/style.css" type="text/css">
</head>
<body>

<div id="nav">
    <h2 class="title">全部商品分类</h2>
    <ul>
        <li><a href="#">图书</a>&nbsp;&nbsp;<a href="#">音像</a>&nbsp;&nbsp;<a href="#">数字商品</a></li>
        <li><a href="#">家用电器</a>&nbsp;&nbsp;<a href="#">手机</a>&nbsp;&nbsp;<a href="#">数码</a></li>
        <li><a href="#">电脑</a>&nbsp;&nbsp;<a href="#">办公</a></li>
        <li><a href="#">家居</a>&nbsp;&nbsp;<a href="#">家装</a>&nbsp;&nbsp;<a href="#">厨具</a></li>
        <li><a href="#">服饰鞋帽</a>&nbsp;&nbsp;<a href="#">个性化妆</a></li>
        <li><a href="#">礼品箱包</a>&nbsp;&nbsp;<a href="#">钟表</a>&nbsp;&nbsp;<a href="#">珠宝</a></li>
        <li><a href="#">食品饮料</a>&nbsp;&nbsp;<a href="#">保健食品</a></li>
        <li><a href="#">彩票</a>&nbsp;&nbsp;<a href="#">旅行</a>&nbsp;&nbsp;<a href="#">充值</a>&nbsp;&nbsp;<a href="#">票务</a></li>
    </ul>
</div>


</body>
</html>

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-rkwftE7P-1613928386165)(C:\Users\www19\Desktop\笔记\CSS.assets\image-20210216173631977.png)]

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        div{
            width: 600px;
            height: 900px;
            border: 1px solid aqua;
        }
        .div1{
            background-image: url("images/小琴琴.jpg");
            background-repeat: no-repeat;
            /*默认是全部平铺的,狂神头像太小了吧,我的都装不下
            background-repeat: repeat-x     水平平铺
            background-repeat: repeat-y     竖直平铺
            background-repeat: no-repeat    不平铺
            */
        }
        .div2{
            background-image: url("images/御坂美琴.jpg");
        }
        .div3{
            background-image: url("images/美琴.jpg");
        }
    </style>

</head>
<body>

<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>

</body>
</html>

2、渐变

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <!--镜像渐变,圆形渐变-->
    <style>
        body{
            /*background-color: #21D4FD;*/
            background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
        }
    </style>

</head>
<body>



</body>
</html>

14、盒子模型及边框使用

1、什么是盒子

margin:外边距

padding:内边距

border:边框

2、边框

1、边框的粗细

2、边框的样式

3、边框的颜色

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>

<style>
    h1,h2,ul,li,a,body{
        /*body总有一个默认的外边距margin: 0,常见操作*/
        /*margin: 0;*/
        /*padding: 0;*/
        /*text-decoration: none;*/
    }
    #box{
        /*border:粗细,样式,颜色*/
        /*solid:固体的,这里值实线
        dashed:虚线的,这里指虚线
        */
        width: 300px;
        border: 1px solid black;
    }
    h2{
        font-size: 16px;
        background-color: white;
        margin: 0;
    }
    form{
        background-color: white;
    }
    div:nth-of-type(1)>input{
        border: 2px solid black;
    }
    div:nth-of-type(2)>input{
        border: 2px solid black;
    }
</style>

<body>

<div id="box">
    <h2>会员登陆</h2>
    <form action="#">
        <div>
            <span>用户名:</span>
            <input type="text">
        </div>
        <div>
            <span>密码:</span>
            <input type="text">
        </div>
    </form>
</div>

</body>
</html>

15、内外边距及div居中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>

<!--外边距的妙用:居中元素
margin: 0 auto
-->
<style>
    #box{
        width: 300px;
        border: 1px solid black;
        margin: 0 auto;
        background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
    }
    h2{
        font-size: 16px;
        /*background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);*/
        margin: 0;
    }
    form{
        /*background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);*/
    }
    input{
        border: 1px solid black;
    }
    div:nth-of-type(1){
        padding: 0 0;
    }
</style>

<body>

<div id="box">
    <h2>会员登陆</h2>
    <form action="#">
        <div>
            <span>用户名:</span>
            <input type="text">
        </div>
        <div>
            <span>密码:</span>
            <input type="text">
        </div>
    </form>
</div>

</body>
</html>

(网页里f12调应该比较方便)

盒子的计算方式:你这个元素到底多大

margin + border + padding + 内容宽度

16、圆角边框及阴影和经验分享

1、圆角边框

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
    /*左上  右上  右下  左下,顺时针方向*/
        div{
            width: 100px;
            height: 100px;
            border: 10px solid lightpink;
            border-radius: 50px 20px;
        }
    </style>

</head>
<body>

<div>

</div>

</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        div{
            width: 50px;
            height: 50px;
            border: 5px solid lightpink;
            border-radius: 50px 50px 50px 50px;
        }
        img{
            border: 3px solid #2225ff;
            background: #21D4FD;
            border-radius: 230px;
        }
    </style>

</head>
<body>

<div></div>

<img src="images/a.jpg" alt="">

</body>
</html>

2、盒子阴影

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--margin:0 auto;居中
    要求:块元素,有固定的宽度
    -->
    <style>
        img{
            border-radius: 250px;
            border: 5px solid lightpink;
            box-shadow: 10px 10px 100px #4bf3ff;
        }
    </style>

</head>
<body>

<div style="width: 500px ;height: 1000px">
    <img src="../3.圆角边框/images/a.jpg" alt="">
</div>



</body>
</html>

17、display和浮动

1、标准文档流

块级元素:独占一行

h1~h6	p	div	列表...

行内元素:不独占一行

span	a	img		srong...

行内元素可以被包含在块级元素中,反之则不可以

2、display

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--

    block 块元素
    inline 行内元素
    inline-block 是块元素但是可以内联,在一行
    -->
    <style>
        div{
            width: 100px;
            height: 100px;
            border: 1px solid red;
            display: inline-block;
        }
        span{
            width: 100px;
            height: 100px;
            border: 1px solid red;
            display: inline-block;
        }
    </style>

</head>
<body>

<div>div块元素</div>
<span>span行内元素</span>

</body>
</html>

1、这个也是一种实现行内元素排列的方式,但是我们很多情况都是用float

3、float

1、左右浮动 float

float:right;
float:left;

18、overflow及父级边框塌陷问题

1、父级边框塌陷的问题

clear

/*
clear:right;右侧不允许有浮动的元素
clear:left;左侧不允许有浮动的元素
clear:both;两侧不允许有浮动的元素
clear:none;
*/

解决方案:

1、增加父级元素的高度(不建议)

#father{
	border:1px #000 solid;
	height:800px;
}

2、增加一个空的div标签,清除浮动

<div class="clear"></div>

.clera{
    clear:both;
    margin:0;
    padding:0;
}

3、overflow

在父级元素中增加一个	overflow: hidden;

4、父类添加一个伪类:after

#father:after{
    content: '';
    display: block;
    clear:both;
}

小结:

​ 1.浮动元素后面增加空的div

​ 简单,代码中尽量避免空div

​ 2.设置父元素的高度

​ 简单,元素假设有了固定的高度,就会被限制

​ 3.overflow

​ 简单,下拉的一些场景避免使用

​ 4.父类添加一个伪类:after(推荐)

​ 写法稍微复杂一点,但是没有副作用

2、对比

  • display

    方向不可以控制

  • float

    浮动起来的话会脱离标准文档流,所以要解决父级边框塌陷的问题

19、相对定位的使用及练习

1、相对定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <!-- 相对定位
    相对于自己原来的位置进行偏移
    -->
    <style>
        body{
            padding: 20px;
        }
        div{
            margin: 10px;
            padding: 5px;
            font-size: 12px;
            line-height: 25px;
        }
        #father{
            border: 1px solid pink;
        }
        #first{
            background-color: #ff9af9;
            border: 1px dashed pink;
            position: relative;/*相对定位:上下左右*/
            top: -20px;
            left: 20px;
        }
        #second{
            background-color: #cbff18;
            border: 1px dashed greenyellow;
        }
        #third{
            background-color: #a9fffd;
            border: 1px dashed powderblue;
            position: relative;
            bottom: -20px;
            right: 20px;
        }
    </style>

</head>
<body>

<div id="father">
    <div id="first">第一个盒子</div>
    <div id="second">第二个盒子</div>
    <div id="third">第三个盒子</div>
</div>

</body>
</html>

相对位置:position: relative;

相对于原来的位置,进行指定的偏移,相对定位的话,仍然在标准文档流中,原来的位置会被保留

上左下右:top、left、bottom、right

20、方块定位练习

p19视频最后的作业:

 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        div,a{
            text-decoration: none;
            padding: 0;
            margin: 0;
        }
        #a1:hover{
            background: #4bf3ff;
        }
        #a2:hover{
            background: #4bf3ff;
        }
        #a3:hover{
            background: #4bf3ff;
        }
        #a4:hover{
             background: #4bf3ff;
         }
        #a5:hover{
            background: #4bf3ff;
        }
        #d1{
            width: 305px;
            height: 305px;
            border: 2px solid red;
        }
        #a1{
            background-color: pink;
            position: relative;
            margin: 5px;
            line-height:95px;
            color: white;
        }
        #a2{
            background-color: pink;
            margin: 5px;
            position: relative;
            left: 195px;
            bottom: 105px;
            line-height:95px;
            color: white;
        }
        #a3{
            background-color: pink;
            margin: 5px;
            position: relative;
            bottom: 15px;
            line-height:95px;
            color: white;
        }
        #a4{
            background-color: pink;
            margin: 5px;
            position: relative;
            left: 195px;
            bottom: 120px;
            line-height:95px;
            color: white;
        }
        #a5{
            background-color: pink;
            position: relative;
            left: 103px;
            bottom: 323px;
            line-height:95px;
            color: white;
        }
    </style>

</head>
<body>

<div id="d1">
    <a href="" id="a1" style="display: block;width: 100px;height: 100px;text-align: center">链接1</a>
    <a href="" id="a2" style="display: block;width: 100px;height: 100px;text-align: center">链接2</a>
    <a href="" id="a3" style="display: block;width: 100px;height: 100px;text-align: center">链接3</a>
    <a href="" id="a4" style="display: block;width: 100px;height: 100px;text-align: center">链接4</a>
    <a href="" id="a5" style="display: block;width: 100px;height: 100px;text-align: center">链接5</a>
</div>


</body>
</html>

21、绝对定位和固定定位

2、绝对定位

定位:基于xxx定位,上下左右~

1、没有父级元素定位的前提下相对于浏览器定位

2、假设父级元素存在定位,我们通常会相对于父级元素进行偏移

3、在父级元素范围内移动

相对于父级或浏览器的位置,进行指定的偏移,绝对定位的话,它不在标准文档流中,原来的位置不会被保留

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        div{
            margin: 10px;
            padding: 5px;
            font-size: 12px;
            line-height: 25px;
        }
        #father{
            border: 1px solid pink;
            padding: 0;
            position: relative;
        }
        #first{
            background-color: #ff9af9;
            border: 1px dashed pink;
        }
        #second{
            background-color: #cbff18;
            border: 1px dashed greenyellow;
            position: absolute;
            right: 30px;
            top: -10px;
        }
        #third{
            background-color: #a9fffd;
            border: 1px dashed powderblue;
        }
    </style>

</head>
<body>

3、固定定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        body{
            height: 1000px;
        }
        div:nth-of-type(1){/*绝对定位,相对于浏览器*/
            width: 100px;
            height: 100px;
            background: #4bf3ff;
            position: absolute;
            right: 0;
            bottom: 0;
        }
        div:nth-of-type(2){/*fixed,固定定位*/
            width: 50px;
            height: 50px;
            background: greenyellow;
            position: fixed;
            right: 0;
            bottom: 0;
        }
    </style>

</head>
<body>

<div>div1</div>
<div>div2</div>

</body>
</html>

22、z-index及透明度

图层~

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="css/style.css">
</head>
<body>

<div id="content">
    <ul>
        <li><img src="images/bg.jpg" alt=""></li>
        <li class="tipText">学习前端找狂神</li>
        <li class="tipBg"></li>
        <li>时间:2099-01-01</li>
        <li>地点:月球一号基地</li>
    </ul>
</div>

</body>
</html>

1、z-index

#content{
    width: 159px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    border: 1px #000 solid;
}
ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
}
/*父级元素相对定位*/
#content ul{
    position: relative;
}
.tipText,.tipBg{
    position: absolute;
    width: 120px;
    top: 80px;
    height: 20px;
}
.tipText{
    color: #a9fffd;
    z-index: 999;
}
.tipBg{
    background: black;
    /*opacity: 0.5;*//*背景透明度*/
    /*filter: alpha(opacity=50);!*IE8及更早的支持这个*!*/
}

2、opacity

#content{
    width: 159px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    border: 1px #000 solid;
}
ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
}
/*父级元素相对定位*/
#content ul{
    position: relative;
}
.tipText,.tipBg{
    position: absolute;
    width: 120px;
    top: 80px;
    height: 20px;
}
.tipText{
    color: #a9fffd;
    /*z-index: 999;*/
}
.tipBg{
    background: black;
    opacity: 0.5;/*背景透明度*/
    filter: Alpha(opacity=50);/*IE8及更早的支持这个*/
}

23、动画及视野拓展

就是狂神在唠嗑,不记了,全靠百度搜来白嫖

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值