布局 1.盒子模型的宽度如何计算? <!-- item 的 offsetWidth 是多大? --> <style> #item{ width: 100px; padding: 10px; border: 1px solid #ccc; margin: 10px; } </style> <div i ...
分类:
Web程序 时间:
2021-01-13 10:33:49
阅读次数:
0
<table id="group-table" data-toggle="table" class="table table-striped table-hover" style="border: 1px solid #e4eaec; margin-top: 10px;"></table> //获取 ...
分类:
编程语言 时间:
2021-01-01 12:09:27
阅读次数:
0
盒子模型 1.盒子被分为两类,可以通过box-sizing控制 IE模型的盒子 (标准盒子模型)content-box .box1{ width:500px; height: 500px; margin: 100px auto; border:2px solid #000000; padding:1 ...
分类:
Web程序 时间:
2020-12-09 12:35:07
阅读次数:
17
HTML: css(sass): 复制代码 .info &:hover::after { content: attr(data-title); display: inline-block; width: 70px; height: 22px; border: 1px solid #0088d8; f ...
分类:
Web程序 时间:
2020-12-01 12:24:49
阅读次数:
10
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>div+css</title> <style type="text/css"> .out{ border:solid 1px red; width: 960px; height: ...
分类:
Web程序 时间:
2020-11-08 17:04:26
阅读次数:
25
先来一张游戏截图 1.Clear Flags:(是一个下拉列表)确定将清除屏幕的哪些部分。使用多个摄像机来绘制不同游戏元素时,这会很方便。 *Skybox:天空盒(默认项)。在屏幕空白处显示当前摄像机的天空盒,如果没有指定天空盒,则会显示默认背景色。 *Solid Color:空白处将显示默认此处设 ...
分类:
编程语言 时间:
2020-10-26 10:55:07
阅读次数:
24
今天在转译的时候遇到的情况 否定伪类选择器(:not):不匹配该属性的每个元素(微信小程序不支持) 1 .bank .wrap.data-v-1773f763 >:not(:last-child) { 2 border-bottom: 1px solid #f0f0f0; 3 } ...
分类:
微信 时间:
2020-10-22 22:54:00
阅读次数:
51
样式: QpushButton QPushButton{ min-width:75px; max-width:75px; min-height:20px; border:1px solid black; border-radius:5px; } QPushButton:pressed{ backgr ...
分类:
其他好文 时间:
2020-09-24 00:09:50
阅读次数:
44
QSS中 QLabel { background-color: rgba(255, 255, 224, 50%); border: 2px solid black; } 0%表示全透明,100%表示不透明 ...
分类:
其他好文 时间:
2020-09-17 17:29:08
阅读次数:
20
.selected{ border-color: #5FB878; } .selected:after { content: ""; position: absolute; top: 0; right: 0; border-top: 30px solid #5FB878; border-left: ...
分类:
Web程序 时间:
2020-08-06 19:30:10
阅读次数:
99