cmd中'/'后接命令行参数,因此文件路径名中尽量用''。命令的具体功能可使用”help+命令名“查看。 常用:cd /d 路径名 cd 当前路径 cd path 切换路径 盘符: 切换到盘符根目录 cls 清屏 dir 显示当前目录下或指定目录下文件列表 del 删除文件 erase 删除至少一个 ...
分类:
其他好文 时间:
2020-06-26 22:06:33
阅读次数:
69
共同点 test-align 和margin 都可以居中: test-align:Center. margin: 0 auto. 很好但是看下区别: <div style="background:red;text-align: center;"> <div style="background:yel ...
分类:
Web程序 时间:
2020-06-26 18:43:49
阅读次数:
65
:hover 当鼠标放到上面时会产生变化 border-radius: 设置圆角 可以分别设置4个角 background-image: linear-gradient(to right,#ff9000,#ff5000);设置线性渐变,括号里的参数第一个参数为方向第二个参数为起始的颜色第三个参数为结 ...
分类:
Web程序 时间:
2020-06-26 16:32:20
阅读次数:
75
设置背景透明,一定要同时有这两句代码,单独一句不起作用 ui->customplot->setBackground(Qt::transparent); ui->customplot->setStyleSheet("background: transparent;"); ...
分类:
其他好文 时间:
2020-06-26 14:40:53
阅读次数:
78
离散化 int a[N]; vector<int>tmp; for(int i=0;i<N;i++) tmp.push_back(a[i]); sort(tmp.begin(),tmp.end()); tmp.erase(unique(tmp.begin(),tmp.end()),tmp.end() ...
分类:
编程语言 时间:
2020-06-25 23:36:03
阅读次数:
71
页面定制 CSS 代码 html{overflow: overlay;scroll-behavior: smooth;}body{background:#fff;min-height:100%;height:100%;color:#314659!important;font-family:Lato, ...
分类:
其他好文 时间:
2020-06-25 18:01:05
阅读次数:
60
Creative Group Project -- Part III Sunlight Chat v. Sunny light Online Table of Contents 1. Background / Scenario 2. Legal Basis for Trial 3. Legal El ...
分类:
其他好文 时间:
2020-06-24 23:21:23
阅读次数:
135
ul{ padding: 0; margin: 0; } .swipper { width: 50%; background-color: #99a9bf; position: relative; overflow: hidden; .swipper-item { top:0; left: 0; p ...
分类:
其他好文 时间:
2020-06-24 22:01:21
阅读次数:
221
公共样式 .wrapper{ width: 300px; height: 300px; background-color: chartreuse; margin-right: 30px; display: inline-block; } .content{ width: 100px; height: ...
分类:
Web程序 时间:
2020-06-23 01:26:22
阅读次数:
87
利用css3里transform:scale 缩放属性控制 .box{ width: 100px; height: 1px; background: red; transform: scale(1,0.5); //scale(x轴缩放,y轴缩放) } 利用css画三角形 div{ height:0; ...
分类:
其他好文 时间:
2020-06-22 17:19:20
阅读次数:
90