博客列表 >伪类与盒模型,常用属性的计算

伪类与盒模型,常用属性的计算

glen
glen原创
2022年08月07日 21:17:52316浏览

伪类选择器

伪类选择器的类型:
1.结构伪类:根据元素的位置来获取元素

  • 获取的第一个子元素:

    1. .list>li:nth-of-type(1){
    2. background-color: bisque;
    3. }

  • 获取的最后一个:

    1. .list > .lime:last-of-type {
    2. background-color: yellow;
    3. font-size: 30px;
    4. }

  • 全选
    1. .list>li:nth-of-type(1n){
    2. background-color: blueviolet;
    3. }

  1. a= -1,反向匹配
  2. 代码块
  3. .list>li:nth-of-type(-n+3){
  4. background-color:red;
  5. }
  6. 前三获取(头部获取,第一个):nth-of-type
  7. 最后三获取(尾部获取,最后一个):nth-last-of-type

  • 偶数获取:

    1. .list>li:nth-of-type(2n){
    2. background-color:red;
    3. }

  • 奇数获取:

    1. .list>li:nth-of-type(2n-1){
    2. background-color:rgb(30, 0, 255);
    3. }

a 表示系数,计算方法(0..1..2..3…..)
b 参数,计算方法(0..1..2..3…..)
c 偏移量,从0开始计算
注意 计算的索引必须有效,并且是从1开始的

2.状态伪类:根据元素的状态来获取元素,例如获取焦点或无效元素

伪:假的。仿
类:权重级别依然是class级别,”类”级/class级


状态选择器:

  • 鼠标悬停状态

    1. <form action="">
    2. <fieldset class="use">
    3. <legend>用户注册</legend>
    4. <label>用户名:<input type="text"></label><br>
    5. <label for="tips">警告</label>
    6. <input type="text" id="uname" value="一旦注册禁止注销" disabled style="border: none" /> <br>
    7. <label>密码:<input type="password"></label><br>
    8. <label>性别:</label>
    9. <label for="nan"></label>
    10. <input type="radio" name="sex" value="0">
    11. <label for="nv"></label>
    12. <input type="radio" name="sex" value="1" id="nv">
    13. <input type="radio" name="sex" value="3" id="nn" checked>
    14. <label for="nn">其他</label>
    15. <br>
    16. <button >立即注册</button>
    17. </fieldset>
    18. </form>

  • 获取焦点:

    1. input:focus {
    2. background-color: rgb(11, 239, 247);
    3. }

  • 更改默认选择的文字颜色

    1. input:checked + label {
    2. color: red;
    3. }


盒模型

  • 修改盒子大小

    1. div {
    2. width: 300px;
    3. height: 100px;
    4. }

    • 简化方案

      四个值计算方法 顺时针

      1. padding: 20px 30px 25px 35px;
      2. 三个值计算方法 顺时针
      3. padding: 30px 35px 25px;(第二个值永远表示左右)
      4. 两个值计算
      5. padding: 20px 30px;
      6. 技巧,第二个值始终是左右计算

    ```

  • 调整单个边框
    1. border-top: 20px solid red;
    2. 设置左边框线
    3. border-left: 20px solid red;
    4. 设置有边框线
    5. border-right: 20px solid red;
width 宽度
height 高度
padding 内边距
border 边框(可视化)
margin 外边距
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议