都知道解决 外边距塌陷 有多种方法 其中一种 是给父盒子加个overflow:hiden;例如 <style> p { color: #f55; background: #fcc; width: 200px; line-height: 100px; text-align:center; margin ...
分类:
其他好文 时间:
2021-06-02 19:54:48
阅读次数:
0
html: <div class="mydiv1"></div> css: .mydiv1 { width: 100px; height: 100px; background: red; position: absolute; } js: let mydiv1 = document.querySel ...
分类:
Web程序 时间:
2021-06-02 15:25:39
阅读次数:
0
亲测有效 直接上代码: :header-cell-style="{background:'#eef1f6',color:'#606266'}" <el-table ref="commonTable" :data="dataSource" :max-height="tableHeight" @sele ...
分类:
其他好文 时间:
2021-06-02 14:23:53
阅读次数:
0
完全透明 background-color: transparent; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#26FFFFFF, endColorstr=#26FFFFFF)//background-col ...
分类:
Web程序 时间:
2021-05-24 16:21:53
阅读次数:
0
雪碧图是把各种小图标集合在一起的png图片,通过background-position来展示雪碧图中不同位置的小图标,比如以下图片,在项目中要用到的小图标很多,如果每一个图标都作为一个png或者jpg图片,这样会增加非常多的网络请求,所以把很多小图片组合在一起是一个很不错的选择。 ? 在用backg ...
分类:
Web程序 时间:
2021-05-24 09:46:05
阅读次数:
0
* { margin: 0; padding: 0; font-family: "Poppins",sans-serif; } body { display: flex; justify-content: center; align-items: center; background:rgb(76, ...
分类:
Web程序 时间:
2021-05-24 01:25:27
阅读次数:
0
层次选择器 后代选择器:在某个元素后面 /*后代选择器*/ body p{ color: aqua; } 子选择器 body>h1{ color:chocolate; } 相邻兄弟选择器 /*相邻兄弟选择器:只有一个,相邻(向下)*/ .active + h2{ background: #c4fff ...
分类:
其他好文 时间:
2021-05-24 00:23:25
阅读次数:
0
ControlTemplate用于描述控件本身. 使用TemplateBinding来绑定控件自身的属性, 比如{TemplateBinding Background}DataTemplate用于描述控件的Content. 使用Binding来绑定数据对象的属性, 比如{Binding Person ...
一、目录 Compositing and Blending是css的一个关于元素组合和混合的模块,详情见MDN官方,包括: background-blend-mode: 该属性定义该元素的背景图片,以及背景色如何混合; isolation:以应用该属性的元素开始,形成单独的堆叠上下文; mix-bl ...
分类:
其他好文 时间:
2021-04-28 12:01:33
阅读次数:
0
这个其实我也挺纠结的。 MDT增加applications 组策略GPO安装软件 dism,在wim中安装软件 似乎方法挺多的。 列个表格比较一下把: MDT GPO DISM 技术难度 难 多次实验,失败 易 基于开机脚本,可以分别设置计算机脚本和用户脚本 中 发布在MDT,WDS,用dism++ ...