概述
这是以uniapp为例;在vue中使用需要把标签和单位转换一下
<template>
<view class="right_x"></view>
</template>
<style lang="scss" scoped>
.right_x {
// 宽高改这里就行了
$width: 30rpx;
// 通过计算得出的宽高比例
$height: ($width / 7);
position: absolute;
top: 0;
right: 0;
width: $width;
height: $width;
cursor: pointer;
background: #000;
line-height: 0;
font-size: 0;
&::after,
&::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: 0;
bottom: 0;
margin: auto;
width: $width;
height: $height;
background: #fff;
-webkit-transform: rotate(-45deg);
}
&::before {
-webkit-transform: rotate(45deg);
}
}
</style>
最后
以上就是激情鞋垫为你收集整理的使用css画一个叉 “X”的全部内容,希望文章能够帮你解决使用css画一个叉 “X”所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复