Blogger Information
无名小辈
Blog
19
fans
0
comment
0
visits
10709
integral:1
P beans:39
  • List of blog posts
  • javaScript基础知识,命名规则、变量、函数、剑头函数

    let b = 11000; console.log(b); // 变量用小写字母,变量标识:可以用字母、数字、下划线、$符,但不能以数字开头 let bl = '变量'; // 常量用大写字母,常量标识:大写字母之间...

    2022-07-28 22:25 Read 391 comment 0
  • CSS盒子模型

    盒子有两种 1、块级:宽度总是占父级的全部宽度,高度由内容决定。可以自定义宽和高 2、内联级:高度是内容高度,宽度是内容宽度 .box{ width: 200px; height: 200px...

    2022-07-19 21:34 Read 352 comment 0
  • CSS选择器权重

    /* 百(id) 十(class) 个(tag) *//* 0,0,1 */h1{ color: green;}/* 0,0,2 */body h1{ color: limegreen;}/* 0,1,0 */.h{ color: ...

    2022-07-06 22:46 Read 351 comment 0
  • MarkDown的常规使用

    MarkDown格式HTML 文件``` JS 文件```const app='商城' PHP 文件```$var = 22; 表格显示 姓名 性别 年龄 张三 男 52 李...

    2022-07-06 22:34 Read 306 comment 0