示例 1 : 尺寸大小 属性:width值:可以是百分比或者像素为了便于观察一个元素的大小设置效果,进行了背景色的设置 <style> p#percentage{ width:50%; height:50%; background-color:pink; } p#pix{ width:180px; ...
分类:
Web程序 时间:
2020-07-13 09:36:39
阅读次数:
107
示例 1 : 背景颜色 属性名background-color颜色的值可以采用3种方式1. 预定义的颜色名字比如red,gray,white,black,pink,参考颜色速查手册2. rgb格式分别代表红绿蓝的比例 rgb(250,0,255) 即表示红色是满的,没有绿色,蓝色是满的,即红色和蓝色 ...
分类:
Web程序 时间:
2020-07-13 09:29:30
阅读次数:
74
CSS盒子模型:只针对block元素或者inline-block元素,也就是可以设置size的元素 在元素上设置的height和width是作用在内容区域的。 background作用在contect + padding的区域。 盒子模型的size是content + padding + borde ...
分类:
Web程序 时间:
2020-07-12 18:25:43
阅读次数:
80
1.CSS css style: 里面的写的就叫做css 每一个样式的间隔用; 全部相同的时候引用class style="height:48px;background-color:red" 2.ID选择器 # 代表通过id选择器查找 #i1{height: 48px;background-colo ...
分类:
Web程序 时间:
2020-07-12 16:21:17
阅读次数:
65
A Bug's Life Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different gend ...
分类:
其他好文 时间:
2020-07-11 17:33:44
阅读次数:
54
1、奇数行 $('.q-t-list-01 a:odd').css( 'background-color', '#f2f2f2') 2、偶数行 $('.q-t-list-01 a:even').css( 'background-color', '#eee') 效果图 ...
分类:
Web程序 时间:
2020-07-10 17:23:44
阅读次数:
59
第二次用echart,第一次做地图, <template> <div class="echarts" style="background:#3bafde"> <div :style="{height:'600px',width:'100%'}" ref="myEchart"></div> </div ...
分类:
其他好文 时间:
2020-07-10 17:03:19
阅读次数:
82
一、单行 <div class="div">这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文这是一段中文</div> .div { background-color: green; width: 100px; overflow: hidden; text-overflow: ellips ...
分类:
Web程序 时间:
2020-07-10 12:55:11
阅读次数:
83
创建剪切动画 对于剪切动画,使用clip-path代替width/height,避免DOM重排导致性能过低。 .animate { width: 200px; height: 200px; background: #000; animation: 1s clip; } @keyframes clip ...
分类:
Web程序 时间:
2020-07-10 00:09:31
阅读次数:
86
[CSS :first-line 选择器完整CSS选择器参考手册实例每个元素的第一行选择的样式: p:first-line { background-color:yellow; } 定义和用法:first-line选择器用来指定选择器第一行的样式。注意::first-line选择器可以使用以下属性:... ...
分类:
Web程序 时间:
2020-07-09 12:12:02
阅读次数:
160