CSS 中文开发手册 背景来源 | background-origin (Backgrounds & Borders) - CSS 中文开发手册 background-origin规定了指定背景图片background-image属性的原点位置的背景相对区域. 本文标题:背景来源 | backgro... ...
分类:
Web程序 时间:
2020-07-04 00:59:51
阅读次数:
78
一、什么是 Promise 1.1 Promise 的前世今生 Promise 最早出现在 1988 年,由 Barbara Liskov、Liuba Shrira 首创(论文:Promises: Linguistic Support for Efficient Asynchronous Proce ...
分类:
其他好文 时间:
2020-07-03 23:26:07
阅读次数:
78
一.css 1.伪元素选择器 html代码: <div> 吟诗作对! </div> css写法 div{ background-color: pink; height: 100px; width: 200px; } div:after{ content: '?'; color:white; } di ...
分类:
编程语言 时间:
2020-07-03 23:20:03
阅读次数:
77
一.css 1.css样式引入方式 (1)第一种 head标签中引入 <style> /* 选择器{css属性名称:属性值;css属性名称:属性值;} */ div{ /* css注释 */ width: 200px; height: 200px; background-color: red; } ...
分类:
编程语言 时间:
2020-07-03 23:18:16
阅读次数:
62
在设计图会经常使用到的阴影效果,如何用css3来实现呢?这篇文章主要整理box-shadow的一些好看常用的投影效果。 1、曲面/椭圆投影效果: 代码如下: <style> .shadow_wrap{ width: 100%;background:#E6EEF6;max-width: 600px;m ...
分类:
Web程序 时间:
2020-07-03 21:37:09
阅读次数:
166
11g RAC集群位置: Grid : $ORACLE_HOME/log/`hostname -s` 19c RAC 集群日志位置: Grid: $ ADR_BASE /diag/crs/rac1/crs/trace 所有的集群日志文件被称为TRACE文件,并用带.trc扩展名(除集群警报日志)结束 ...
分类:
数据库 时间:
2020-07-03 21:25:39
阅读次数:
128
.fullscreen { position: fixed; top: 0; left: 0; margin: 0 auto; width: 100%; height: 100%; background-color: #1a1a1a; } .screen-content { width: 95%; ...
分类:
Web程序 时间:
2020-07-03 21:22:11
阅读次数:
78
ProjectConfig: package com.ultiwill.utils; import com.ultiwill.entity.EsConfigEntity; import com.alibaba.fastjson.JSON; public class ProjectConfig { p ...
分类:
其他好文 时间:
2020-07-03 12:32:39
阅读次数:
54
在css中 transparent到底是什么意思呢? transparent 它代表着全透明黑色,即一个类似rgba(0,0,0,0)这样的值。 例如在css属性中定义:background:transparent,意思就代表背景透明。 实际上background默认的颜色就是透明的属性,所以写和不 ...
分类:
Web程序 时间:
2020-07-03 12:28:37
阅读次数:
138
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>float演练</title> <style> #div1 { border: 2px; background-color: deeppink; widt ...
分类:
其他好文 时间:
2020-07-02 23:19:35
阅读次数:
323