CSS 中文开发手册 背景重复 | background-repeat (Backgrounds & Borders) - CSS 中文开发手册 background-repeatCSS属性定义背景图像的重复方式。背景图像可以沿着水平轴,垂直轴,两个轴重复,或者根本不重复。 本文标题:背景重复 | ... ...
分类:
Web程序 时间:
2020-07-04 01:03:34
阅读次数:
64
CSS 中文开发手册 背景来源 | background-origin (Backgrounds & Borders) - CSS 中文开发手册 background-origin规定了指定背景图片background-image属性的原点位置的背景相对区域. 本文标题:背景来源 | backgro... ...
分类:
Web程序 时间:
2020-07-04 00:59:51
阅读次数:
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
.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
在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
CSS 中文开发手册 缩放背景图像 | CSS Background and Borders: Scaling background images (Backgrounds & Borders) - CSS 中文开发手册 background-sizeCSS属性使得它可以调整背景图像的宽度和高度,从... ...
分类:
Web程序 时间:
2020-07-02 00:26:22
阅读次数:
72
直接在css中这样写是不行的,完全没有效果。 .am-list-item.am-input-item { height: 36px; min-height: 30px; } 要像下面这样,加上global才有效果。 :global { .am-list-body { background-color ...
分类:
其他好文 时间:
2020-07-01 22:30:30
阅读次数:
188