欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css3 加減法

吉茹定2年前10瀏覽0評論

CSS3 加減法的實現方法

/* 加法 */
.addition {
width: 100px;
height: 100px;
background-color: red;
position: relative;
}
.addition:before,
.addition:after {
content: "";
background-color: white;
position: absolute;
}
.addition:before {
width: 60%;
height: 20%;
top: 50%;
left: 20%;
transform: translateY(-50%);
}
.addition:after {
width: 20%;
height: 60%;
top: 20%;
left: 50%;
transform: translateX(-50%);
}
/* 減法 */
.subtraction {
width: 100px;
height: 100px;
background-color: blue;
position: relative;
}
.subtraction:before {
content: "";
background-color: white;
position: absolute;
width: 60%;
height: 20%;
top: 50%;
left: 20%;
transform: translateY(-50%);
}
.subtraction:after {
content: "";
background-color: white;
position: absolute;
width: 20%;
height: 60%;
top: 20%;
left: 50%;
transform: translateX(-50%);
}
.subtraction:before,
.subtraction:after {
content: "";
background-color: white;
position: absolute;
}
.subtraction:after {
width: 60%;
height: 20%;
top: 50%;
left: 20%;
transform: translateY(-50%);
}

以上代碼分別實現了CSS3中的加法和減法,通過使用:before和:after偽元素來實現。

加法是通過一個正方形和兩個矩形組成,矩形的相對位置和大小通過定位和transform屬性來實現。

減法與加法類似,但是頂部和底部的矩形是顛倒的。