CSS基础

CSS基础

1、什么是CSS

如何学习

  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,THML与CSS结构分离的思想,网页变得简单,SEO

CSS2.1 浮动,定位

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

1.3 快速入门

基本入门

<!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的优势:

  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="demo02.css">

</head>
<body>

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

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

</body>
</html>

扩展:外部样式两种写法

  • 链接式: html
    <!--外部样式-->
    <link rel="stylesheet" href="demo02.css">
  • 导入式 @import是CSS2.1特有
    <!--导入式-->
    <style>
        @import url("demo02.css");
    </style>

2、选择器

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

2.1 基本选择器

  1. 标签选择器:选择一类标签 {}
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        /*标签选择器,会选择到页面上所有的这个标签的元素*/
        h1{
            color: #09eec5;
            background: burlywood;
            border-radius: 5px;
        }
        p{
            font-size: 80px;
        }
    </style>
</head>
<body>

<h1>学CSS</h1>
<h1>学CSS</h1>
<p>段落</p>

</body>
</html>
  1. 类选择器 class:选择所有class属性一致的标签,跨标签 .类名{}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

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

        */
        .qinjiang{
            color: red;
        }
        .kuang{
            color: darkorange;
        }
    </style>
</head>
<body>

<h1 class="qinjiang">标题1</h1>
<h1 class="kuang">标题2</h1>
<h1 class="kuang">标题3</h1>

<p class="kuang">P标签</p>

</body>
</html>
  1. id选择器:全局唯一! #id名{}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        /*
        id选择器   :id不许保证全局唯一!
        #id名称{}
        优先级:
        不遵循就近原则,固定的
        id选择器 > class 选择器 > 标签选择器
         */
        #i1{
            color: plum;
        }
        .style1{
            color: green;
        }
        h1{
            color: red;
        }
    </style>

</head>
<body>

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

</body>
</html>

优先级:id选择器 > class 选择器 > 标签选择器

2.2 层次选择器

  1. 后代选择器:在某个元素的后面
/*后代选择器*/
body p{
    background: burlywood;
}
  1. 子选择器:一代
/*子选择器*/
body>p{
background: #09eec5;
}
  1. 相邻兄弟选择器:同辈
/*兄弟选择器*/
.active +p{
background: brown;
}
  1. 通用选择器
/*通用兄弟选择器,当前选中元素的向下的所有兄弟元素*/
.active ~p{
background: #07f637;
}

2.3 结构伪类选择器

伪类:条件

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

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

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

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

2.4 属性选择器

<!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: lightsteelblue;
            text-align: center;
            color: gainsboro;
            text-decoration: none;
            margin-right: 5px;
            font: bold 20px/50px Arial;
        }
        /*属性名,属性名 = 属性值(正则)
        = 绝对等于
        *= 包含这个元素
        */
        /*存在id属性的元素     a[]{}*/
        /*a[id]{*/
        /*    background: yellow;*/
        /*}*/
        /*a[id=first]{*/
        /*    background: yellow;*/
        /*}*/

        /* class中又link的元素*/
        /*a[class*="link"]{*/
        /*    background: #b5deb0;*/
        /*}*/

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

        /*选中href中以pdf结尾的元素*/
        a[href$=pdf]{
            background: darkolivegreen;
        }
    </style>
</head>
<body>

<p class="demo">

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

</p>

</body>
</html>
image-20210205152949502

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 字体样式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--字体风格-->
    <style>
        p{
            font: oblique bolder 22px "楷体";
        }
    </style>
</head>
<body>

<p>雷军,男,汉族,1969年12月16日出生于湖北省仙桃市,无党派,大学学历,理学学士学位,高级工程师。 [1]  中国大陆著名天使投资人。</p>

</body>
</html>

3.3 文本样式

  1. 颜色 color rgb rgba
  2. 文本对齐方式 text-align = center
  3. 首行缩进 text-indent:2em
  4. 行高 line-height: 单行文字上下居中 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
        RBGA A:0~1
    text-align: 排版,居中
    text-indent: 2em;   段落首行缩进
    height: 300px;
    line-height: 300px;
    行高,和块的高度一致就可以上下居中
    -->
    <style>
        h1{
            color: rgba(0,255,255,0.5);
            text-align: center;
        }
        .p1{
            text-indent: 2em;
        }
        .p3{
            background: lightsteelblue;
            height: 300px;
            line-height: 300px;
        }
        /*下划线*/
        .l1{
            text-decoration: underline;
        }
        /*中划线*/
        .l2{
            text-decoration: line-through;
        }
        /*上划线*/
        .l3{
            text-decoration: overline;
        }
        /*
        水平对齐~参照物,   a,b
        */
         img,span{
             vertical-align: middle;
         }
        /*超链接去下划线*/
        a{
            text-decoration: none;
        }
    </style>
</head>
<body>
<a href="">123</a>
<p>
    <img src="../images/img.png" alt="">
    <span>asdasfagadfhs</span>
</p>

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

<h1>介绍</h1>
<p class="p1">「享延保、碎屏保8折优惠;赠小米移动流量卡;赠多看阅读VIP季卡;享特惠加价购」</p>
<p>一亿像素夜景相机 / 国内首发骁龙 750G处理器 / 6.67''小孔径全面屏 / 120Hz六档变速高刷屏 / 全场景AI四摄 / 线性马达 / 4820mAh+33W闪充 / 立体声双扬声器 / 多功能NFC</p>
<p class="p3">Xiaomi, a global company producing quality products at honest pricing.</p>

</body>
</html>

3.4 阴影

/*text-shadow:阴影颜色,水平偏移,垂直偏移,阴影半径*/
#university{
text-shadow: deepskyblue 10px -10px 10px;
}

3.5 超链接伪类

正常情况下:a, a:hover

/*鼠标悬浮的状态*/
a:hover{
    color: orange;
    font-size: 50px;
}
/*鼠标按住未释放的状态*/
a:active{
    color: brown;
}
/*访问过的状态*/
a:visited{
    color: burlywood;
}

3.6 列表

/*ul li*/
/*
list-style:
    none  去掉圆点
    circle  空心圆
    decimal 数字
    square  正方形
*/
/*ul{*/
/*    background: darkgrey;*/
/*}*/

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("IMG_5966.jpg");
        /*默认是全部平铺的*/
    }
    .div1{
        background-repeat: repeat-x;
    }
    .div2{
        background-repeat: repeat-y;
    }
    .div3{
        background-repeat: no-repeat;
    }
</style>
ul li{
    height: 30px;
    list-style: none;
    text-indent: 1em;
    background-image: url("img_1.png");
    background-repeat: no-repeat;
    background-position: 245px 4px;
}
image-20210205180851963

3.8 渐变

background-color: #0093E9;
background-image: linear-gradient(45deg, #0093E9 0%, #80D0C7 100%);

4、盒子模型

4.1 什么是盒子

image-20210205200452777

margin:外边距

padding:内边距

border:边框

4.2 边框

<style>
h2,h1,ul,li,a,body{
    /*body总有一个默认的外边距margin:0 常见操作*/
    margin: 0;
    padding: 0;
    text-decoration: none;
}
/*
border:粗细,样式,颜色
*/
#box{
    width: 300px;
    border: 1px solid red;
}
h2{
    font-size: 16px;
    background: #b5deb0;
    line-height: 30px;
    color: darkslateblue;
}
form{
    background: lightsteelblue;
}
div:nth-of-type(1)>input{
    border: 3px solid black;
}
div:nth-of-type(2)>input{
    border: 3px dashed powderblue;
}
div:nth-of-type(3)>input{
    border: 3px dashed darkslateblue;
}
</style>

4.3 内外边距

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        h2,h1,ul,li,a,body{
            /*body总有一个默认的外边距margin:0 常见操作*/
            margin: 0;
            padding: 0;
            text-decoration: none;
        }
        /*
        border:粗细,样式,颜色
        */
        #box{
            width: 300px;
            border: 1px solid red;
            margin: 0 auto;
        ;
        }
        /*
        顺时针旋转
        margin: 0
        margin: 0 1px
        margin: 0 1px 2px 3px
        */
        h2{
            font-size: 16px;
            background: #b5deb0;
            line-height: 30px;
            color: darkslateblue;
            margin: 0 1px 2px 3px;
        }
        form{
            background: lightsteelblue;
        }
        input{
            border: 1px solid black;
        }
        div:nth-of-type(1){
            padding: 10px 2px;
        }
    </style>
</head>
<body>

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

</body>
</html>

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

image-20210205203059431

margin+border+padding+内容宽度

4.4 圆角边框

4个角

    <!--顺时针方向-->
<!--
圆圈:100px
-->
    <style>
        div{
            width: 100px;
            height: 100px;
            border: 10px solid red;
            border-radius: 50px  20px 10px 5px;
        }
    </style>

4.5 盒子阴影

<!--margin: 0 auto;  居中
    要求:块元素,块元素有固定的宽度
-->
    <style>
        div{
            width: 100px;
            height: 100px;
            border: 10px solid red;
            box-shadow: 10px 10px 10px yellow;
            margin: 0 auto;
        }
    </style>

5、浮动

5.1 标准文档流

image-20210205214720292

块级元素:独占一行

h1~h6    p   div     列表

行内元素:不独占一行

span    a   img     strong...

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

5.2 display

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

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

5.3 float

  1. 左右浮动 float
.layer{
    border: 1px solide #060;
    display: inline-block;
    float: right;
}

5.4 父级边框塌陷的问题

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

解决方案:

  1. 增加父级元素的高度
#father{
    border: 1px #000 solid;
    height: 800px;
}
  1. 增加一个空的div标签清除浮动
<div class="clear"></div>

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

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

#father{
    border: 1px #000 solid;
    overflow: hidden;
}
  1. 父类添加一个伪类:after
#father:after{
    content: '';
    display: block;
    clear: both;
}

小结:

  1. 浮动元素后面增加空div 简单,代码中尽量避免空div
  2. 设置父元素的高度 简单,元素假设有了固定的高度,就会被限制
  3. overflow 简单,下拉的一些场景避免使用
  4. 父类添加一个伪类: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 #666;
            padding: 0;
        }
        #first{
            border: 1px dashed #299e4e;
            background-color: #299e99;
            position: relative; /*相对定位:上下左右*/
            top: -20px;
            left: 20px;
        }
        #second{
            border: 1px dashed #98ac27;
            background-color: #98ac99;
        }
        #third{
            border: 1px dashed #722da3;
            background-color: #722d99;
            position: relative;
            bottom: -10px;
            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: -20px;
left: 20px;
bottom: -10px;
right: 20px;

练习:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        div{
            border: 2px solid red;
            width: 300px;
            height: 300px;
            padding: 5px;
        }
        a {
            width: 100px;
            height: 100px;
            display: inline-block;
            background-color: pink;
            color: white;
            text-decoration: none;
            text-align: center;
            line-height: 100px;
        }
        a:hover{
            background-color: deepskyblue;
        }
        #href1{

        }
        #href2{
            position: relative;
            left: 95px;
        }
        #href3{
            position: relative;
            top: 100px;
        }
        #href4{
            position: relative;
            top: 100px;
            left: 95px;
        }
        #href5{
            position: relative;
            top: -100px;
            left: 100px;
        }
    </style>
</head>
<body>
<div>
    <a href="#" id="href1">链接1</a>
    <a href="#" id="href2">链接2</a>
    <a href="#" id="href3">链接3</a>
    <a href="#" id="href4">链接4</a>
    <a href="#" id="href5">链接5</a>
</div>
</body>
</html>
image-20210206103036943

6.2 绝对定位

定位:基于XXX定位,上下左右

绝对定位:position:absolute;

  1. 没有父级元素定位的前提下,相对于浏览器定位
  2. 假设父级元素存在定位,我们通常会相对于父级元素进行偏移

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

<!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 #666;
            padding: 0;
            position: relative;
        }
        #first{
            border: 1px dashed #299e4e;
            background-color: #299e99;
        }
        #second{
            border: 1px dashed #98ac27;
            background-color: #98ac99;
            position:absolute; /*绝对定位:上下左右*/
            right: 20px;
            top: -20px;
        }
        #third{
            border: 1px dashed #722da3;
            background-color: #722d99;
        }
    </style>
</head>
<body>
<div id="father">
    <div id="first">第一个盒子</div>
    <div id="second">第二个盒子</div>
    <div id="third">第三个盒子</div>
</div>
</body>
</html>

6.3 固定定位 fixed

<!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: 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.3 z-index

图层~

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

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

<div id="content">
    <ul>
        <li><img src="img.png" alt=""></li>
        <li class="tip">学习</li>
        <li class="bg"></li>
        <li>时间:2099-1-1</li>
        <li>地点:月球</li>
    </ul>
</div>

</body>
</html>

背景透明度: opacity: 0.5;

#content{
    width: 375px;

    padding: 0;
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    border: 1px #000000 solid;
}
ul,li{
    margin: 0;
    padding: 0;
    list-style: none;
}
#content ul{
    position: relative;
}
/*父级元素相对定位*/
.tip,.bg{
    position: absolute;
    width: 380px;
    height: 25px;
    top: 216px;
}
.tip{
    z-index: 0;
    color: white;
}
.bg{
    background: #000000;
    opacity: 0.5;       /*背景透明度*/
}

7、动画

了解…

8、总结

CSS 3
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇