相邻的border会平分所占的区域,出现一个斜线, .my_triangle{ width: 10px; height: 10px; background-color: blue; border-width: 100px ; border-style: solid; border-left-colo ...
分类:
其他好文 时间:
2020-07-13 18:40:16
阅读次数:
71
【js设计模式】SOLID五大设计原则 一、用Promise来说明单一职责原则、开放封闭原则。 function loadImg(src){ var promise = new Promise(function(resolve,reject){ var img = document.createEl ...
分类:
Web程序 时间:
2020-07-10 14:55:53
阅读次数:
72
css属性 <style> div{ border: 1px solid red; width: 100px; } .div1{ width: 100px; height: 100px; /*外边距*/ /* margin: 50px; */ } .div2{ width: 200px; heigh ...
分类:
Web程序 时间:
2020-07-10 00:42:13
阅读次数:
81
css属性 <style> p{ color: #FF0000; font-size: 30px; text-align: center; line-height: 200px; /* border 边框 */ border: 1px solid red; } div{ border: 1px so ...
分类:
Web程序 时间:
2020-07-10 00:35:28
阅读次数:
90
扩展选择器 <style> div p{ color:red; } div > p { border: 1px solid; } input[type='text']{ border: 5px solid; } a:link{ color: pink; } a:hover{ color: green ...
分类:
Web程序 时间:
2020-07-10 00:10:29
阅读次数:
67
//初始化点赞 var $praise_id = '<?php echo $praise; ?>'; $(function () { if ($praise_id){ $(".bor:eq(0)").css({ border: "1px solid #06c1ae", "border-radius" ...
分类:
其他好文 时间:
2020-07-08 15:36:19
阅读次数:
83
border:10px solid black; border中的三个属性顺序随意 顺时针写 上右下左*//*padding: 20px 80px 100px 40px;*/ /*如果写三个 中间的80是左右 上 左右 下*//*padding: 20px 80px 40px;*//*如果写两个 是 ...
分类:
其他好文 时间:
2020-07-07 12:58:20
阅读次数:
62
解决办法:1.外部父级盒子加一个边框2.外部父级盒子设置overflow:hidden3.使用伪元素类示例如下: <style> .con{ width: 300px; height: 300px; background-color: gold; border: 1px solid black; / ...
分类:
其他好文 时间:
2020-07-07 12:57:14
阅读次数:
65
NoSql (memcache Redis) 全文搜索:Sphinx、Elasticsearch、Solr Kafka Redis/MC MC指的是memcache SSD Cache 固态硬盘 Solid State Disk或Solid State Drive,简称SSD DOCKER LEVE ...
分类:
其他好文 时间:
2020-07-04 15:02:16
阅读次数:
123
画两条边框,再旋转盒子45度 .box{ width: 7px; height: 7px; border-top: 2px solid red; border-right: 2px solid red; transform: rotate(45deg); } ...
分类:
Web程序 时间:
2020-07-03 01:05:55
阅读次数:
89