<img class="desaturate" src="./timg.jpg">
/* 让类名为 desaturate 的 img 显示黑白色 */
img.desaturate {
filter: grayscale(100%);
}
<ul class="nav">
<li>AAA</li>
<li>BBB</li>
<li>CCC</li>
</ul>
/* 常规写法 */
.nav li {
border-bottom: 1px solid #ccc;
}
.nav li:last-child {
border-bottom: none;
}
/* 使用 :not( ) 写法 */
.nav li:not(:last-child) {
border-bottom: 1px solid #ccc;
}
<div class="arrow"></div>
div.arrow {
margin: 10px;
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #2f2f2f;
/* 默认向上 */
/* 向右 */
/* transform: rotate(90deg); */
/* 向下 */
/* transform: rotate(180deg); */
/* 向左 */
/* transform: rotate(-90deg); */
}
<h2 data-text="今天天气不错">今天天气不错</h2>
h2[data-text] {
position: relative;
}
h2[data-text]::after {
content: attr(data-text);
z-index: 10;
color: #e3e3e3;
position: absolute;
top: 0;
left: 0;
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
}
<p class="blur">您吃了吗</p>
.blur {
color: transparent;
text-shadow: 0 0 3px rgb(0, 0, 0);
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |