wrap .box{ width: 200px; height:200px; background: pink; // 方案1 position: absolute; top:0; left:0; right:0; bottom:0; margin: auto; //方案2 position:abs ...
分类:
Web程序 时间:
2019-11-25 20:44:45
阅读次数:
81
box{ width: 0px; height: 0px; border: 100px solid; border top color: red; border right color: transparent; border bottom color: transparrent; border l ...
分类:
Web程序 时间:
2019-11-25 20:38:45
阅读次数:
81
box{ width: 100px; height: 200px; background: pink; padding: 100px; border: 80px solid; background image: url("img/1.png"); //默认 background origin: pa ...
分类:
其他好文 时间:
2019-11-25 20:33:51
阅读次数:
62
一:Python 正则表达式 正则表达式(regex)是一个特殊的字符序列,它能帮助你方便的检查一个字符串是否与某种模式匹配。 Python1.5版本起通过标准库中的re 模块来支持 Perl 风格的正则表达式。 二:正则表达模式 2.1.符号 2. 2.特殊字符 2.3.扩展表示法 2.4.标志修 ...
分类:
编程语言 时间:
2019-11-25 20:19:19
阅读次数:
76
1,目标:实现html中以vue.js初始化select控件,绑定选择事件 2,html部分代码 3,js部分代码 select box的选项列表值是js对象数组。 select box的选中项绑定的是对象的key。 ...
分类:
Web程序 时间:
2019-11-25 15:30:49
阅读次数:
108
小图展示大图 1 <style> 2 *{margin:0;padding:0;} 3 ul,ol{list-style:none;} 4 #box { 5 position:relative; 6 margin:100px auto; 7 border:1px solid #ccc; 8 widt ...
分类:
其他好文 时间:
2019-11-25 15:21:53
阅读次数:
65
弹幕小效果 <style type="text/css"> *{ margin: 0; padding: 0;} #box{ width: 542px; height: 330px; border: 3px solid goldenrod; margin-left:300px;} #btm{marg ...
分类:
其他好文 时间:
2019-11-25 11:34:40
阅读次数:
54
由于sprintf跟printf在用法上几乎一样,只是打印的目的地不同而已,前者打印到字符串中,后者则直接在命令行上输出。这也导致sprintf比printf有用得多。所以本文着重介绍sprintf,有时也穿插着用用 pritnf。 sprintf是个变参函数,定义如下: int sprintf( ...
分类:
编程语言 时间:
2019-11-25 11:21:52
阅读次数:
55
C语言strcat()函数:字符串连接(拼接) C语言 strcat() 函数用来将两个字符串连接(拼接)起来。 头文件:string.h 语法/原型: char*strcat(char* strDestination, const char* strSource); 参数说明: strDestin ...
分类:
编程语言 时间:
2019-11-25 11:12:58
阅读次数:
126
1 问题 有时,我们请求国外资源时,下载巨慢,甚至失败。如: cd vue-devtools/ $ yarn install 进行到 cypress.... 时,可能失败。 2 解决 次日凌晨(7~8点左右),再运行一下。居然成功了! 3 思考 可能是出口太过拥挤了吧。 ...
分类:
其他好文 时间:
2019-11-25 09:34:23
阅读次数:
50