<style> body,ul,li,div{margin:0;padding: 0;} ul{font-size: 0px;} .tab_list{ border: 1px gray solid; width: 400px;height: 50px; background: gainsboro; ...
分类:
其他好文 时间:
2019-08-10 21:15:33
阅读次数:
100
css代码 *{margin:0;padding:0;} .showimg{position:relative;width:450px;height:420px;border:1px solid #f5f5f5;} .show{width:450px;height:420px; } .product ...
分类:
Web程序 时间:
2019-08-08 21:24:18
阅读次数:
457
i{ display: inline-block; width:0; height:0; border-width:20px; border-style:solid; border-color:#000 transparent transparent transparent; } ...
分类:
其他好文 时间:
2019-08-02 11:13:35
阅读次数:
103
.borders::before{ position: absolute; left: 0; top: 0; content: " "; width: 100%; height: 1px; border-top: 1px solid #ECECF0; -webkit-transform-origin... ...
分类:
微信 时间:
2019-08-01 00:20:45
阅读次数:
359
用纯CSS创建一个三角形的原理是什么? 首先,需要把元素的宽度、高度设为0。然后设置边框样式。 width: 0; height: 0; border-top: 40px solid transparent; border-left: 40px solid transparent; border-r ...
分类:
Web程序 时间:
2019-07-27 14:26:46
阅读次数:
120
前言 前面有文章写到了面向对象编程和面向对象设计的头五大原则(SOLID五大原则)。今天我们再来谈谈面向对象的三大特性--封装、继承、多态 封装 被定义为"把一个或多个项目封闭在一个物理的或者逻辑的包中"。在面向对象程序设计方法论中,封装是为了防止对实现细节的访问。封装只公开某些对外接口,隐藏具体实 ...
分类:
其他好文 时间:
2019-07-23 09:29:44
阅读次数:
96
What are home depot's high-gloss kitchen cabinets made of?1, solid wood,Solid wood environmental protection, good texture, high temperature, scratch r ...
分类:
Web程序 时间:
2019-07-22 15:17:10
阅读次数:
192
/*调用方式:GridView中加上属性 CssClass="mGrid" 即可 */ .mGrid { width: 600px; height: 100px; background-color: #05e75f; margin: 5px 0 10px 0; border: solid 1px #... ...
分类:
Web程序 时间:
2019-07-11 17:00:30
阅读次数:
284
<button type='button' style='border: 1px solid #eeeeee;color: #717070;height: 20px;border-radius: 3px;line-height: 18px;' class='button cbtn' onclick= ...
分类:
其他好文 时间:
2019-07-09 19:40:26
阅读次数:
145
原文:asp.net core系列 65 正反案例介绍SOLID原则一.概述 SOLID五大原则使我们能够管理解决大多数软件设计问题。由Robert C. Martin在20世纪90年代编写了这些原则。这些原则为我们提供了从紧耦合的代码和少量封装转变为适当松耦合和封装业务实际需求的结果方法。使用这些... ...
分类:
Web程序 时间:
2019-06-30 00:00:33
阅读次数:
164