Border 和 周期 周期的定义: $0<p<|s|, s[i] = s[i+p], \forall i \in{1,2,...,∣s∣? p}$周期不能为0,也不能等于串长. Border: $0<r<|s|, pre(s,r) = suf(s,r)\(, 则pre(s,r)为s的一个borde ...
分类:
其他好文 时间:
2020-08-07 00:31:37
阅读次数:
96
.selected{ border-color: #5FB878; } .selected:after { content: ""; position: absolute; top: 0; right: 0; border-top: 30px solid #5FB878; border-left: ...
分类:
Web程序 时间:
2020-08-06 19:30:10
阅读次数:
99
如下是dialog做出来的效果: 但我希望头部和底部都有border样式,区分开来,查看源代码之后我在style里面这样写了: <style lang="scss" scoped> .el-dialog__header{ border-bottom: 1px solid #e8eaec; } .el ...
分类:
其他好文 时间:
2020-08-04 18:16:07
阅读次数:
305
表格 tr :table row td :table data 1 <body> 2 <table style="width: 240px" border="1"> 3 <caption>表格的跨行与跨列</caption> 4 <tr> 5 <td rowspan="2">跨2行的单元格</td> ...
分类:
Web程序 时间:
2020-07-31 14:04:36
阅读次数:
139
1、下载安装包 win32_11gR2_database_1of2.zip win32_11gR2_database_2of2.zip 官方下载地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/ind ...
分类:
数据库 时间:
2020-07-30 18:26:26
阅读次数:
112
原理:CSS3规定,1rem的大小就是html元素的font-size的值。 举个栗子: 假设我们把html的font-size设为10px,那么此时1rem就为10px。如果我们要设置100px*50px的div,我们只需将它的宽设为10rem,高设置为5rem。 <!DOCTYPE html> ...
分类:
其他好文 时间:
2020-07-30 01:51:04
阅读次数:
99
Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugly numbers. ...
分类:
其他好文 时间:
2020-07-30 01:31:19
阅读次数:
73
css样式 /*修改滚动条样式*/ div::-webkit-scrollbar{ width:10px; height:10px; /**/ } div::-webkit-scrollbar-track{ background: rgb(239, 239, 239); border-radius: ...
分类:
Web程序 时间:
2020-07-29 14:48:18
阅读次数:
78
今天antd表格设置样式 ,被教育了一番,上来第一感觉这样式咋搞啊,一脸懵逼,还是css 掌握不牢固,今天记下css3复杂选择器。 1.相邻兄弟选择器 P+b : 同一个父元素下p标签后面的第一个兄弟元素b; 2.通用兄弟选择器 p~b : 同一个父元素下p标签后面的所有兄弟元素b; 3.属性选择器 ...
分类:
Web程序 时间:
2020-07-29 12:46:09
阅读次数:
187
function createStyle(){ return"*{padding:0;margin:0;border:0}.loading{width:640px;height:1024px;margin:0 auto}.loadImg{width:640px;height:1024px;anima ...
分类:
Web程序 时间:
2020-07-29 12:39:59
阅读次数:
206