当前位置:   article > 正文

CSS学习笔记

CSS学习笔记

CSS学习笔记

一、CSS基础

1、CSS简介

      层叠:一层一层的;

      样式表:很多的属性和样式

      CSS语法:

      <style>

             选择器 { 属性名:属性值; 属性名:属性值; ……  }

      </style>

2、CSS和HTML的结合方式

  • 在HTML标签中的style属性里添加CSS代码;
  • 在头标签中添加<style>标签;
  • 在style标签中使用@import导入外部CSS文件:

<style>

@import url("css/test.css");

</style>

  • 在头标签中使用<link>标签导入外部CSS文件:

<link rel="stylesheet" href="css/test.css" />

3、CSS选择器

  • 使用标签名作为选择器;
  • 使用HTML标签中的class属性作为选择器:
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. .center
  8. {
  9. text-align:center;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h1 class="center">标题居中</h1>
  15. <p class="center">段落居中。</p>
  16. </body>
  17. </html>

 

 

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. p.center
  8. {
  9. text-align:center;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h1 class="center">这个标题不受影响</h1>
  15. <p class="center">这个段落居中对齐。</p>
  16. </body>
  17. </html>

  

 

  • 使用HTML标签中的id属性作为选择器:
    1. <!DOCTYPE html>
    2. <html>
    3. <head>
    4. <meta charset="utf-8">
    5. <title>菜鸟教程(runoob.com)</title>
    6. <style>
    7. #para1
    8. {
    9. text-align:center;
    10. color:red;
    11. }
    12. </style>
    13. </head>
    14. <body>
    15. <p id="para1">Hello World!</p>
    16. <p>这个段落不受该样式的影响。</p>
    17. </body>
    18. </html>

      

     

  • CSS选择器的优先级:
  • HTML标签中的style属性  >       id选择器  >  class选择器 >  标签选择器
  • 扩展选择器
  •  关联选择器:当HTML标签之间存在嵌套关系时             
                    <p><font></font></p>

                           选择器:p  font{}

  •   组合选择器:要对 HTML中多个标签设置同样的样式,

                    <p></p>

                    <font></font>

                    选择器:p,font{}

  •   伪元素选择器:是HTML预定义好的元素

/*未被访问过*/

a:link{

color: black;

}

/*鼠标悬停*/

a:hover{

color: red;

}

/*点击鼠标,没有释放时*/

a:active{

color: darkmagenta;

}

/*访问过后*/

/*a:visited{

color: black;

}*/

 

4、CSS样式优先级

      由外到内,由上到下,优先级为由小到大。

      后加载的优先级越高。

二、CSS常用属性

1、文字修饰

  • color颜色
  • font-family字体
  • font-size字体大小
  • font-weight粗细
  • letter-spacing字间距
  • text-indent 文字缩进
  • text-align 对齐方式
  • line-height 行高
  • 外边距(margin)

2、文本修饰

3、盒子模型

 

margin: 10px  20px  30px  40px; 上、右、下、左

margin: 10px  20px  30px ; 上、左右、下

margin: 10px  20px; 上下、左右

margin: 10px; 四周

  • 边框(border)

border-方位(bottom、top、left、right)

border-style 边框的样式

border-color 边框颜色

  • 内边距(padding)

参考外边距

4、定位

  • 固定定位

position:fixed;

调整位置:top、left、right、bottom

  • 相对定位

position: relative; 未脱离流布局;

  • 绝对定位

position: absolute;  相对于最近的已定位的父元素,脱离流布局;

5、层叠顺序

z-index 值为数字,数字越大,层次越高;

6、列表样式

list-style: none; 取消列表样式

7、元素溢出

overflow: hidden; 溢出部分隐藏

8、圆角

border-radius:  值;  值可以为像素或百分比

9、滚动

<marquee >

  要滚动的文字或图片

</marquee>

常用属性:

behavior:设定滚动的方式

alternate: 表示在两端之间来回滚动

scroll:表示由一端滚动到另一端,会重复。

slide:表示由一端滚动到另一端,不会重复。

direction:设定活动字幕的滚动方向up向上滚动,down向下滚动,left向左滚动,right向右滚动

height:设定滚动字幕的高度

width: 设定滚动字幕的宽度

scrollamount:设定滚动速度,属性值为正整数,值越大滚动速度越快

10、盒子模型

  • 外边距(margin
  •  margin:10px;  //上下左右的外边距都是10px
  •  margin:10px  20px;  //外边距的值:上下10px,左右20px;
  •  margin: 10px  30px  60px;  //外边距的值:上10px,左右30px,下60px;
  •  margin:10px 20px 30px 40px;  //上10px,右20px,下30px,左40px;
  • 内边距(padding):
  • 边框(border):
  • border-radius:设置圆角

转载于:https://www.cnblogs.com/zyx110/p/10849368.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/141102
推荐阅读
相关标签
  

闽ICP备14008679号