
CSS
earth_small_ma
这个作者很懒,什么都没留下…
展开
-
定位与堆叠
定位与堆叠 偏移属性 取值 top/right/left/bottom : [length] | [percentage] | auto | inherit 默认值 : auto 适用于定位元素(position值不为static的元素),无继承性 百分数时:对于top与bottom,则相对于包含块的高度;对于right与left,则相对于包含块的宽度 首先介绍什么是初始包含...原创 2018-06-29 10:48:29 · 255 阅读 · 0 评论 -
浮动与清除浮动(已完结)
浮动与清除浮动 浮动 float属性的取值 float : left | right | none | inherit 默认值 : none 适用于所有元素,没有继承性 浮动框的范围 浮动元素的外边距边界定义了浮动框的大小 浮动元素的包含块是其最近的块级祖先元素,且包含块的大小为该块级祖先元素的内容区 浮动元素的特点 1.浮动元素会脱离标准文档流(这就是为什么浮动...原创 2018-06-29 16:47:17 · 402 阅读 · 0 评论 -
水平垂直居中
水平垂直居中 通过绝对定位 .center{ width: 100px; height: 100px; background-color: red; position: absolute; top: 50%; left: 50%; margin-left: -50px; margin-top:-50px; } 该种方式要求元素必须要有明确的宽高 translate .center...原创 2018-10-12 20:23:28 · 661 阅读 · 0 评论