css

1、什么是CSS

HTML + CSS + JavaScript

结构 + 表现 + 交互

如何学习:

  1. CSS是什么

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

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

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

  5. 盒子模型

  6. 浮动

  7. 定位

  8. 网页动画(业务)

1.1、什么是CSS

Cascading Style Sheet 层叠/级联样式表

CSS:表现(美化网页)

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

1.2、发展史

CSS1.0

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

CSS2.1 浮动,定位

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

1.3、快速入门

style

基本入门

<!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>

建议使用这种规范

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-euKAHJUe-1606739115673)(C:\Users\13961745379\AppData\Roaming\Typora\typora-user-images\image-20201125210002350.png)]

css的优势:

1、内容和表现分离

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

3、样式十分的丰富

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

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

1.4、CSS的3种导入方式

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

    <!--内部样式-->
    <style>
        h1{
            color: green;
        }
    </style>
    
	<!--外部样式-->
    <link rel="stylesheet" href="css/style.css">
    
</head>
<body>

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

</body>
</html>

拓展:外部样式两种方法

  • 链接式:

    html

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

    @import是CSS2.1特有的!

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

2、选择器

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

2.1、基本选择器

1、标签选择器 :选择一类标签 标签{}

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

    <style>
        /*标签选择器,会选择到页面上所有的这个标签的元素*/
        h1{
            color: #123456;
            background: #147852;
            border-radius: 24px;
        }

        p{
            font-size: 80px;
        }
    </style>

</head>
<body>

<h1>学Java</h1>
<h1>学Java</h1>

<p>听狂神说</p>

</body>
</html>

2、类选择器 class :选中所有class属性一致的标签,跨标签 .类名{}

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

    <style>
        /*类选择器的格式  .class的名称{}
        好处,可以多个标签归类,是同一个 class,可以复用
        */
        .qingjiang{
            color: red;
        }
        .kuangshen{
            color: green;
        }
    </style>

</head>
<body>

<h1 class="qingjiang">标题1</h1>
<h1 class="kuangshen">标题2</h1>
<h1>标题3</h1>

</body>
</html>

3、ID 选择器 :全局唯一 #ID名{}

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

    <style>
        /* id选择器  :  ID必须保证全局唯一!
           #id名称{}
           不遵循就近原则
           id选择器> class选择器 > 标签选择器
        */
        #qinjiang{
            color: aqua;
        }
    </style>
</head>

<body>

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

</body>
</html>

优先级:id>class>标签

2.2、层次选择器

1、后代选择器 在某个元素后面: 祖爷爷 爷爷 爸爸 你

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

2、子选择择器,一代,儿子

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

3、相邻兄弟选择器 同辈

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

4、通用选择器

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

2.3、结构伪类选择器

伪类:条件

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

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

/*
选中p1:定位到父元素,选择当前的第一个元素
选择当前p元素的父级元素,选中父级元素的第一个,并且是当前元素才生效
*/
p:nth-child(1){
    background: yellow;
}

/*选择父元素,下的p元素的第二个,类型*/
p:nth-of-type(2){
     background: blue;
}

2.4、属性选择器(常用)

id+class结合

<!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: #1da74b;
            text-align: center;
            color: red;
            text-decoration: none;
            margin-right: 5px;
            font:bold 20px/50px Arial;
        }

        /*存在id属性的元素  a[]{}
            = 绝对等于
           *= 包含这个元素
           ^= 以这个开头
           $= 以这个结尾
        */
        a[id]{
            background: yellow;
        }
        
         /*id=first的元素 */
        a[id=first]{
            background: green;
        }

        /*class 中有links的元素*/
        a[class*="links"]{
            background: yellow;
        }

        /*选中href中http开头的元素*/
        a[href^="https"]{
            background: yellow;
        }

        /*选中href中txt结尾的元素*/
        a[href$="txt"]{
            background: black;
        }


    </style>

</head>
<body>

<p class="demo">
    <a href="https://www.baidu.com" class="links item first" id="first">1</a>
    <a href="https://www.taobao.com" class="links item active" target="_blank" title="test">2</a>
    <a href="https://www.jd.com/" class="links item">3</a>
    <a href="https://www.kugou.com" class="links item">4</a>
    <a href="https://pc.qq.com/detail/7/detail_4507.html" class="links item">5</a>
    <a href="images/1.txt" class="links item">6</a>
    <a href="images/2.png" class="links item">7</a>
    <a href="images/3.jpg" class="links item">8</a>
    <a href="abc" class="links item">9</a>
    <a href="/a.pdf" class="links item">10</a>
</p>


</body>
</html>
 = 绝对等于
*= 包含这个元素
^= 以这个开头
$= 以这个结尾

3、美化网页的核心

3.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;
        }
    </style>

</head>
<body>

欢迎学习 <span id="title1">Java</span>

</body>
</html>

3.2、字体样式

<!--
    font-family:字体
    font-size:字体大小
    font-weight:字体的粗细
    color:字体颜色
--> 
<style>
    body{
        font-family: 楷体;
        color: red;
    }
    h1{
        font-size: 50px;
    }
    .p1{
        font-weight: bold;
    }

</style>

3.3、文本样式

1、颜色 color rgb rgba

2、文本对齐的方式 test-align=center

3、首行缩进 test-indent:2em;

4、行高 line-height: 单行文字上下居中!行高等于height

5、装饰 text-decoration

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

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

    <!--
    颜色:
        单词:
        RGB  0~F
        RGBA
        text-align : 排版,居中
        text-indent: 段落首行缩进
        height: 300px;
        line-height: 300px;
        行高,和 块的高度一样,就可以上下居中
    -->
    <style>
        h1{
            color: rgba(0,255,255,0.5);
            text-align: center;
        }
        .p1{
            text-indent: 2em;
        }
        .p3{
            background: red ;
            height: 300px;
            line-height: 300px;
        }
        /*下划线*/
        .l1{
            text-decoration: underline;
        }
        /*中划线*/
        .l2{
            text-decoration: line-through;
        }
        /*上划线*/
        .l3{
            text-decoration: overline;
        }
        /*超链接去下划线*/
        a{
            text-decoration: none;
        }
    </style>

</head>
<body>

<a href="">aasd</a>

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

<h1>故事介绍</h1>
<p class="p1">世上充满着爱,有父母之爱,有兄弟之爱,还有朋友之爱。很久很久以前,茂密的大森林里就发生了一个朋友之爱的故事。</p>
<p>一天,秋高气爽,景色宜人。活泼好动的九尾狐在花丛中看到了一只漂亮的花蝴蝶。只见那只蝴蝶,一会儿姗姗起舞,一会</p>
<p>儿在花丛中觅食,逗得九尾狐眼馋极了。 九尾狐决心抓住花蝴蝶,可是怎么也追不上,猛一加速,眼看就要抓住了,结果</p>
<p>掉进了一个大坑里。坑里一个猎铗夹住了九尾狐的脚。 “好痛啊,痛死我了,快救救我吧!”九尾狐拼命地叫喊。</p>
<p>九尾狐的好朋友小灰熊听见了呼救声,火急火燎地随声找去。小灰熊发现了九尾狐,见九尾狐满脚是血,血流不止,很虚弱</p>
<p>的样子,急切地安慰说:“九尾狐,你先等着,我马上叫朋友们过来救你!”小灰熊飞快叫来了大象、长颈鹿、狮子、老虎,</p>
<p>九尾狐的妈妈也来了。大坑太深了,大象和长颈鹿无能为力,狮子和老虎也没办法,九尾狐痛晕过去了。‘团结就是力量’,</p>
<p>大家集思广益想了一个办法,找细藤条编成一条粗藤绳,再把藤绳的一头儿卷成圈,才把九尾狐拉了上来。</p>
<p>九尾狐醒来时,已经在家里的床上了。九尾狐问妈妈:“我不是掉到坑里了吗,怎么会在这儿?”妈妈含着眼泪说:“是大家</p>
<p>齐心协力把你救上来的,咱们应该感谢大家呀!”九尾狐感动地流下了泪水。</p>
<p class="p3"> 爱的力量是可歌可泣的!</p>

</body>
</html>

3.4、阴影

/*text-shadow: 阴影颜色,水平偏移,垂直偏移,阴影半径*/
        #price{
            text-shadow: #3cc7f5 10px 0px 2px;
        }

3.5、超链接伪类

正常情况下 a,a:bover

/*默认的颜色*/
a{
    text-decoration: none;
    color:#000000;
}
/*鼠标悬浮的颜色*/
a:hover{
    color: red;
    font-size: 50px;
}
/*鼠标按住未释放的状态*/
a:active{
    color: yellow;
}

3.6、列表

/*ul li*/
/*
list-style:
    none:去掉原点
    circle:空心圆
    decimal:数字
    square:正方形
*/
ul li{
    height: 30px;
    list-style: none;
    text-indent: 1em;
}

3.7、背景

背景颜色

背景图片

   <style>
        div{
            width: 1000px;
            height: 700px;
            border: 1px solid red;
            background-image: url("images/b.png");
            /*默认是平铺的*/
        }
        .div1{
            background-repeat: repeat-x;
        }
        .div2{
            background-repeat: repeat-y;
        }
        .div3{
            background-repeat: no-repeat;
        }
    </style>

3.8、渐变

background-color: #4158D0;
background-image: linear-gradient(24deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);

4、盒子模型

4.1、什么是盒子模型

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-r1PgymIO-1606739115675)(C:\Users\13961745379\AppData\Roaming\Typora\typora-user-images\image-20201128213118264.png)]

margin:外边距

padding:内边距

border:边框

4.2、边框

1、边框的粗细

2、边框的样式

3、边框的颜色

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

    <style>
        /*body总有一个默认的外边距margin:0*/
        body{
            margin: 0;
        }
        /*boder:粗细,样式,颜色*/
        #box{
            width: 300px;
            border: 1px solid red;
        }

        h2{
            font-size: 16px;
            background: #3cc7f5;
            line-height: 30px;
        }

        form{
            background: yellow;
            line-height: 30px;
        }

        div:nth-of-type(1) input{
            border: 3px solid red;
        }

        div:nth-of-type(2) input{
            border: 3px dashed black;
        }

        div:nth-of-type(3) input{
            border: 3px solid orange;
        }
    </style>
</head>
<body>

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

</body>
</html>

4.3、内外边距

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

    <!--外边距的妙用:居中元素-->
    <style>
        #box{
            width: 300px;
            border: 1px solid red;
            margin: 0 auto;
        }

        h2{
            font-size: 16px;
            background: #3cc7f5;
            line-height: 30px;
            margin-top: 0;
        }

        form{
            background: yellow;
            line-height: 30px;
        }
        input{
            border: 1px solid black;
        }

        div:nth-of-type(1){
            padding: 10px 20px;
        }
    </style>
</head>
<body>

<div id="box">
    <h2>会员登录</h2>
    <form action="#">
        <div>
            <sapn>用户名:</sapn>
            <input type="text">
        </div>

        <div>
            <span>密码:</span>
            <input type="text">
        </div>

        <div>
            <span>邮箱:</span>
            <input type="text">
        </div>
    </form>
</div>


</body>
</html>

4.4、圆角边框

<!--顺时针方向-->
<!--圆圈:  圆角 = 半径!-->
<style>
    div{
        width: 100px;
        height: 100px;
        border: 10px solid red;
        border-radius: 100px ;
    }
</style>

4.5、阴影

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

    <style>
        div {
            width: 500px;
            margin: 0 auto;
            text-align: center;
        }
        img {
            width: 100px;
            height: 100px;
            border: 10px solid red;
            border-radius: 250px;
            box-shadow: 10px 10px 100px blue;
        }
    </style>
</head>
<body>

<div>
    <img src="images/b.png" alt="">
</div>

</body>
</html>

5、浮动

5.1、display

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

    <!--
    block 块元素
    inline 行内元素
    inline-block   即使块元素也是行内元素
    none 消失
    -->
    <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>

5.2、float

1.左右浮动

div{
    margin: 10px;
    padding: 5px;
}

#father{
    border: 1px #000000 solid;
}

.layer01{
    border: 1px #F00 dashed;
    display:inline-block;
    float: right;
}

.layer02{
    border: 1px blue dashed;
    display:inline-block;
    float: right;
}

.layer03{
    border: 1px yellow dashed;
    display:inline-block;
    float: right;
}

.layer04{
    border: 1px orange dashed;
    display:inline-block;
    float: right;
}

5.3、父级边框塌陷的问题

clear

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

解决方案:

1、增加父级元素的高度

#father{
    border: 1px #000000 solid;
    height: 1000px;

}

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

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

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

3、overflow

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

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

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

小结:

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

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

  1. 设置父元素的高度

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

  2. overflow

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

  3. 父类添加一个伪类:after()

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

5.5、对比

  • display

    方向不可控制

  • float

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

6、定位

6.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 black;
        }
        #first{
            background-color: #3cc7f5;
            border: 1px dashed orange;
            position: relative;/*相对定位*/
            top: -20px;
        }
        #second{
            background-color: #3cc7f5;
            border: 1px dashed red;
        }
        #third{
            background-color: #3cc7f5;
            border: 1px dashed blue;
        }
    </style>

</head>
<body>

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

</body>
</html>

相对定位:position: relative;

相对于原来的位置,进行指定的偏移

练习:

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

    <style>
        div {
            width: 300px;
            height: 300px;
            padding: 10px;
            border: 2px solid red;
        }
        a{
            width: 100px;
            height: 100px;
            text-decoration: none;
            background: #C850C0;
            line-height: 100px;
            text-align: center;
            color: white;
            display: block;
        }

        a:hover{
            background: blue;

        }
        .a2,.a4{
            position: relative;
            left: 200px;
            bottom: 100px;
        }
        .a5{
            position: relative;
            left: 100px;
            bottom: 300px;
        }
    </style>

</head>
<body>

<div>
    <a class="a1" href="#" >链接1</a>
    <a class="a2" href="#" >链接2</a>
    <a class="a3" href="#" >链接3</a>
    <a class="a4" href="#" >链接4</a>
    <a class="a5" href="#" >链接5</a>
</div>

</body>
</html>

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-k9iniJZh-1606739115676)(C:\Users\13961745379\AppData\Roaming\Typora\typora-user-images\image-20201129181322550.png)]

6.2、绝对定位

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

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

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

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

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

6.3、固定定位 fixed

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

    <style>
        body{
            height: 2000px;
        }
        div:nth-of-type(1){
            width: 100px;
            height: 100px;
            background: red;
            position: absolute;
            right: 0;
            bottom: 0;
        }

        div:nth-of-type(2){
            width: 50px;
            height: 50px;
            background: yellow;
            position: fixed;
            right: 0;
            bottom: 0;
        }
    </style>

</head>
<body>

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

</body>
</html>

6.4、z-index

图层

z-index:默认是0,最高无限制

opacity: 0.5;背景透明度

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

    <link rel="stylesheet" href="css/styleCss.css" type="text/css">

</head>
<body>

<div id="content">
    <ul>
        <li><img src="images/b.png" alt=""></li>
        <li class="tipText">健哥专属</li>
        <li class="tipBg"></li>
        <li>时间: 2020-01-01</li>
        <li>地点: 月球一号基地</li>
    </ul>
</div>

</body>
</html>
#content{
    width: 250px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    border: 1px #000000 solid;
}
ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
}
/*父级元素相对定位*/
#content ul{
    position: relative;
}

.tipText,.tipBg{
    position: absolute;
    width: 250px;
    height: 25px;
    top: 17px;
}
.tipText{
    color: white;
    z-index:999;/*层级*/
}
.tipBg{
    background: blue;
    opacity: 0.5;/*背景透明度*/
    filter: alpha(opacity=50);
}

7、动画

height: 50px;
background: yellow;
position: fixed;
right: 0;
bottom: 0;
}

div1
div2
```

6.4、z-index

图层

z-index:默认是0,最高无限制

opacity: 0.5;背景透明度

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

    <link rel="stylesheet" href="css/styleCss.css" type="text/css">

</head>
<body>

<div id="content">
    <ul>
        <li><img src="images/b.png" alt=""></li>
        <li class="tipText">健哥专属</li>
        <li class="tipBg"></li>
        <li>时间: 2020-01-01</li>
        <li>地点: 月球一号基地</li>
    </ul>
</div>

</body>
</html>
#content{
    width: 250px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    border: 1px #000000 solid;
}
ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
}
/*父级元素相对定位*/
#content ul{
    position: relative;
}

.tipText,.tipBg{
    position: absolute;
    width: 250px;
    height: 25px;
    top: 17px;
}
.tipText{
    color: white;
    z-index:999;/*层级*/
}
.tipBg{
    background: blue;
    opacity: 0.5;/*背景透明度*/
    filter: alpha(opacity=50);
}

7、动画

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值