<style type="text/css">
a[class^=column]{
background:red;
}
a[href$=doc]{
background:green;
}
a[title*=box]{
background:blue;
}
</style>
a[class^=column]{
background:red;
}
a[href$=doc]{
background:green;
}
a[title*=box]{
background:blue;
}
</style>
2017-01-12
左上角是原点。这样想就理解XY轴怎么偏移了
模糊半径就是形状为中心向周围扩散的模糊距离
半径就是半径了。。
模糊半径就是形状为中心向周围扩散的模糊距离
半径就是半径了。。
2017-01-12
1. top:50%,left:50%,是将色块的左上角定位在了屏幕的中央,但是,整体并不在中央;
2. translate的百分比是根据自身的宽度和高度来定的,translate(-50%,-50%) 配合 top:50%,left:50% 实现了居中
2. translate的百分比是根据自身的宽度和高度来定的,translate(-50%,-50%) 配合 top:50%,left:50% 实现了居中
2017-01-11
<div>父亲
<p>第一个儿子</p> <-- first-child:
<a>第二个儿子</a>
<h1>第三个儿子</h1> <-- last-child:
</div>
<p>第一个儿子</p> <-- first-child:
<a>第二个儿子</a>
<h1>第三个儿子</h1> <-- last-child:
</div>
2017-01-10
我发现好多人乱BB,尤其是伪类乱用绝对定位的那几个瓜皮
/*栅栏*/
.nav li:not(.last):after{
content:'|';
color: rgb(180,77,69);
margin-left: 10px;
}
/*栅栏*/
.nav li:not(.last):after{
content:'|';
color: rgb(180,77,69);
margin-left: 10px;
}
2017-01-10