当权重相等,后来先到覆盖 颜色 div{ border:100px solid black; width: 0px; height: 0px; border-left-color: blue; border-left-color: transparent; border-top-color: tra ...
分类:
Web程序 时间:
2019-10-07 13:38:41
阅读次数:
103
设计模式中的SOLID原则,分别是单一原则、开闭原则、里氏替换原则、接口隔离原则、依赖倒置原则。前辈们总结出来的,遵循五大原则可以使程序解决紧耦合,更加健壮。 单一责任原则 指的是一个类或者一个方法只做一件事。如果一个类承担的职责过多,就等于把这些职责耦合在一起,一个职责的变化就可能抑制或者削弱这个 ...
分类:
其他好文 时间:
2019-10-07 13:25:37
阅读次数:
73
css: ul li{ display: inline; margin-right: 3em; } ul{ margin:8em auto; margin-left: 20%; } ul li:hover{ border-bottom: 2px solid #000; } html: <ul> <l ...
分类:
其他好文 时间:
2019-10-06 13:26:15
阅读次数:
85
jquery之文档操作 一、相关知识点总结1、CSS .css() .css("color") > 获取color css值 .css("color", " ff0000") > 设置值 .css({"color": " cccccc", "border": "1px solid ff0 ...
分类:
Web程序 时间:
2019-10-03 10:49:46
阅读次数:
107
读条的实现1 .div{position: relative;border: 1px solid #111;width: 80px;height: 60px} .div div{width: 20px;height: 20px;border-radius:50%;background: #111;p ...
分类:
Web程序 时间:
2019-10-02 17:10:45
阅读次数:
108
div { font: Arial, Helvetica, sans-serif; margin: 20px 40px; border: 1px solid gray; } 6.Map值 在Sass中,还为我们提供了另外一种特殊数据类型:Map值。Map值跟JSON值是非常相似的,数据都是以“键/值 ...
分类:
Web程序 时间:
2019-10-01 16:42:52
阅读次数:
136
css部分 .sanjiaoxin{ width: 0; height: 0; border-bottom: 20px solid #000; border-left: 18px solid transparent; border-right: 18px solid transparent; } h ...
分类:
Web程序 时间:
2019-09-30 16:30:38
阅读次数:
93
关于什么是好代码,软件行业烂大街的名词一大堆,什么高内聚、低耦合、可复用、可扩展、健壮性等等。也有所谓设计6原则—SOLID: 即Single Responsibility (单一职责),Open Close(开闭),Liskov Substitution(里氏替换),Interface Segre ...
分类:
其他好文 时间:
2019-09-27 22:50:20
阅读次数:
132
伪元素不能跟着hover,要这样用 .box:hover::before position: absolute 自动把元素转换为块元素。 例子: html .box { width: 500px; height: 30px; position: relative; border: 1px solid ...
分类:
其他好文 时间:
2019-09-27 21:15:16
阅读次数:
70
1、用纯css创建一个三角形的原理: .demo{ width:0; height: 0; border: 5px solid transparent; border left color: red; } 2、为什么要初始化css样式 不同的浏览器堆标签的默认值是不同的,如果没有对css初始化往往会 ...
分类:
Web程序 时间:
2019-09-26 10:01:16
阅读次数:
92