1.background-position 属性设置背景图像的起始位置。 2.background-size 规定背景图像的尺寸: 3.linear-gradient() 函数用于创建一个线性渐变的 "图像"。 4.Transform 属性应用于元素的2D或3D转换。这个属性允许你将元素旋转,缩放, ...
分类:
Web程序 时间:
2020-07-21 21:28:08
阅读次数:
111
:root { --bg-color: white; /*change background*/ --text-color: black; /*change text color*/ --md-char-color: #C7C5C5; /*change color of meta characetr ...
分类:
其他好文 时间:
2020-07-21 00:59:10
阅读次数:
457
一、定义样式 <style> .blueBack { background-color: blue; } .yellowBack { background-color: yellow; } </style> 二、定义两个按钮,一个div <div id="vueFirst"> <div :class ...
分类:
Web程序 时间:
2020-07-19 15:56:07
阅读次数:
158
CSS3的常规属性 背景属性——background ? 在css中使用background属性来设置背景,它的值有以下几个: 属性 描述 background 简写属性,作用是将背景属性设置在一个声明当中。 background-color 设置的是背景颜色。(颜色名 十六进制 rgb() rgb ...
分类:
Web程序 时间:
2020-07-18 22:15:21
阅读次数:
306
<head> <style> .adModal{ position:fixed; background: black; top: 0; right: 0; bottom: 0; left: 0; z-index: 998; opacity: 0.4; } .tdModal{ position:fix ...
分类:
其他好文 时间:
2020-07-18 19:50:38
阅读次数:
67
#使元素高亮def highlight_element(driver, element): driver.execute_script("arguments[0].setAttribute('style',arguments[1]);",element,"background:green ;bord ...
background-color 背景颜色 背景颜色值:十六进制方法表示 background-image 背景图像 background-image:url(图片路径); background-repeat 背景重复方式 repeat:沿水平和垂直两个方向平铺 no-repeat:不平铺,即只显示 ...
分类:
Web程序 时间:
2020-07-18 15:44:29
阅读次数:
75
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .bg{ background-color:blue ; width: 100px; height: 100px; ...
分类:
其他好文 时间:
2020-07-18 13:41:59
阅读次数:
56
_1:改变选中时候的背景色处理: ::selection { color:#fff; background-color: #5CB85C ;} ::-moz-selection { color:#fff; background-color: #5CB85C ;} ::-webkit-selectio ...
分类:
其他好文 时间:
2020-07-17 14:07:11
阅读次数:
72
步骤 1 : 一个div始终贴在下方 首先把蓝色div设置为相对定位然后把内部的绿色div设置为绝对定位, bottom: 0表示贴在下面 <style> #div1 { position: relative; height: 300px; width: 90%; background-color: ...
分类:
Web程序 时间:
2020-07-15 23:43:28
阅读次数:
92