-
在没有重置transform-origin改变元素原点位置的情况下,CSS变形进行的旋转、位移、缩放,扭曲等操作都是以元素自己中心位置进行变形。查看全部
-
transform:matrix(长,左向上右不动,右向上左不动,高,水平偏移,垂直偏移);查看全部
-
transform:translate()查看全部
-
transform:scale(0.8) transform:skew() transform:rotate()查看全部
-
":first-of-type”选择器类似于“:first-child”选择器,不同之处就是指定了元素的类型,其主要用来定位一个父元素下的某个类型的第一个子元素 .wrapper > div:first-of-type { background: orange; } class wrapper 下的第一个div查看全部
-
ol > li:nth-child(2n-1){ background: green; } 2n-1 参数n的起始值始终是1,而不是0 也可以是其他表达式查看全部
-
skew(x,y);x水平扭曲y竖直扭曲查看全部
-
ul > li:last-child 最后一个元素 ul > li:first-child 第一个元素查看全部
-
transform: rotate(45deg);正值是顺时针查看全部
-
:target选择器称为目标选择器,用来匹配文档(页面)的URI的某个标志符的目标元素 <div class="menuSection" id="brand"> <h2><a href="#brand">Brand</a></h2> <p>content for Brand</p> </div> :target p {/:target 表示div标签 :target p div下p标签 点击链接触发事件 background: orange; color: #fff; }查看全部
-
div:empty 选择div中没有内容的div 一个空格都没有的查看全部
-
:not选择器称为否定选择器,和jQuery中的:not选择器一模一样,可以选择除某个元素之外的所有元素 input:not([type="submit"]) 冒号前后都不能有空格查看全部
-
":root”选择器等同于<html>元素,简单点说: :root{background:blue} html {background:blue;} 在IE9以下还可以借助“:root”实现hack功能查看全部
-
选择器 a[class^=column]{} //表示 class名中以column开头的 a标签 a[href$=doc]{}//表示href中以doc结尾的a标签 a[title*=box]{}//表示title中包涵box的a标签查看全部
-
多重图片背景 background:url(http://static.mukewang.com/static/img/logo_index.png) left top /70% 55% no-repeat, url(http://static.mukewang.com/static/img/logo_index.png) right bottom /50% 40% no-repeat;查看全部
举报
0/150
提交
取消