这部分包含 Java 面试过程中关于 SOLID 的设计原则,OOP 基础,如类,对象, 接口,继承,多态,封装,抽象以及更高级的一些概念,如组合、聚合及关联。 也包含了 GOF 设计模式的问题。 ...
分类:
其他好文 时间:
2020-06-13 19:45:25
阅读次数:
89
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style> .container { text-align: center; height: 300px; border: 1px solid rebec ...
分类:
其他好文 时间:
2020-06-10 21:15:57
阅读次数:
57
<style> .box{ width: 0; height: 0; border-top: 20px solid transparent; border-left: 20px solid transparent; border-right: 20px solid transparent; bord ...
分类:
Web程序 时间:
2020-06-09 23:38:41
阅读次数:
83
border是围绕元素内容和内边距的一条或多条线,border 属性允许你规定元素边框的样式、宽度和颜色 值: border-width 粗细 none/hidden/solid/dashed/dotted border-color 颜色 默认颜色是字体颜色 border-style 类型 可以综合 ...
分类:
其他好文 时间:
2020-06-04 19:36:26
阅读次数:
69
<html> <head> <title>Test</title> </head> <body> <div id="div1" style="border:1px solid red; width:500px; position:relative; height:500px;"> 1111111 < ...
分类:
其他好文 时间:
2020-06-03 17:12:44
阅读次数:
201
参考地址 https://www.cnblogs.com/xsd1/p/12850636.html 百度了好久,网上说更改边框只需要 border:1px solid black ;这样就可以,但是内部的边框没有改变。 选取的Css的时候,需要把tr td增加上,否则内部是没有的。 以Vxe表格为例 ...
分类:
Web程序 时间:
2020-06-02 18:45:16
阅读次数:
56
.cont { width: 200px; height: 200px; border: 1px solid #000000; overflow-x: hidden; } .cont::-webkit-scrollbar { display: none; } ...
分类:
Web程序 时间:
2020-06-02 11:33:31
阅读次数:
57
半透明边框 background-clip: 规定背景的绘制区域 .div { width: 200px; height: 200px; background: blue; border: 10px solid rgba(255, 170, 170, 0.3); background-clip: p ...
分类:
Web程序 时间:
2020-05-31 19:34:47
阅读次数:
74
引出问题 首先我们来这么一个问题, 这里是完整的 jsfiddle demo or codepen demo 给一个元素绑定两个边框样式, 右侧和底部都为1px的红色边框 styleA: { borderBottom: '1px solid red', borderRight: '1px solid ...
分类:
Web程序 时间:
2020-05-31 11:24:04
阅读次数:
67
## calc实现 css两端固定大小,中间自动大小## 样式代码 <style type="text/css"> .wrap{ height:300px; width:400px; background:#e0e0e0; } .top{ height:50px; border:solid 1px ...
分类:
Web程序 时间:
2020-05-30 14:19:49
阅读次数:
79