1 .table{ 2 font-size: 12px; 3 border-collapse: collapse; 4 border-top: 1px solid #7f9db9; 5 border-left: 1px solid #7f9db9; 6 } 7 .table td, .table t ...
分类:
其他好文 时间:
2020-03-14 11:19:28
阅读次数:
83
动画 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>canvas</title> <style> .canvas{border:1px solid #abcdef;background-color: #a9 ...
分类:
其他好文 时间:
2020-03-11 23:45:59
阅读次数:
60
线性渐变 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>canvas</title> <style> .canvas{border:1px solid pink;} </style> </head> <bo ...
分类:
其他好文 时间:
2020-03-11 21:03:22
阅读次数:
65
canvas默认宽高是300*150px <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>canvas</title> <style> .canvas{border:1px solid pink;} </st ...
分类:
其他好文 时间:
2020-03-11 01:21:44
阅读次数:
73
1 export function spheredo($step: Step) { 2 const $solid = $step.$('x-solid') as Solid; 3 4 $solid.addMesh(() => { 5 6 $solid.addPoint([2.3/2.3, -1/2. ...
分类:
其他好文 时间:
2020-03-09 00:47:20
阅读次数:
67
CSS-border属性 设置边框 border有三个值 1 border-width //规定边框的宽度 2 border-style //规定边框的样式 3 border-color //规定边框的颜色 如果不设置其中的某个值,也不会出问题,比如 border:solid #ff0000; 也是 ...
分类:
Web程序 时间:
2020-03-06 12:57:46
阅读次数:
260
<div style="border: 2px solid #000;width: 100%;height: 100%;"> <div id="main" style="border: 1px solid green;width: 100%;height: 100%;float: left;back ...
分类:
其他好文 时间:
2020-03-05 13:15:54
阅读次数:
541
<style> .head_pic{ width: 200px; height: 200px; background: #fff; /* border: 1px solid #e1e1e1; */ border-radius: 8px; margin: 10px auto; overflow: hi ...
分类:
Web程序 时间:
2020-03-05 10:28:54
阅读次数:
143
目标伪类选择器 给跳转到的目标设置样式 <!-- 目标伪类选择器 --> <a name="target">目标</a> <a href="#target">显示目标</a> :target{ border: 1px solid red; color: blueviolet; } outline: ...
分类:
Web程序 时间:
2020-03-05 00:47:40
阅读次数:
107
接口隔离原则的英文翻译是“ Interface Segregation Principle”,缩写为 ISP。 Robert Martin 在 SOLID 原则中是这样定义它的: “Clients should not be forced to depend upon interfaces that ...
分类:
其他好文 时间:
2020-03-02 17:42:38
阅读次数:
67