100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > css 绘制 上 下 右 左箭头

css 绘制 上 下 右 左箭头

时间:2023-07-01 15:09:13

相关推荐

css 绘制 上 下 右 左箭头

1 上箭头

.drawJt{

border: 4rpx solid #c2c0c0;

width: 40rpx;

height: 40rpx;

border-left-color: transparent;

border-top-color: transparent;

transform: rotate(-135deg);//上箭头

margin: 0 auto;

margin-top: 20rpx;

}

2 下箭头

.drawJt{

border: 4rpx solid #c2c0c0;

width: 40rpx;

height: 40rpx;

border-left-color: transparent;

border-top-color: transparent;

//下箭头

//transform: rotate(45deg);

margin: 0 auto;

margin-top: 20rpx;

}

3 左箭头

.drawJt{

border: 4rpx solid #c2c0c0;

width: 40rpx;

height: 40rpx;

border-left-color: transparent;

border-top-color: transparent;

transform: rotate(135deg);//左箭头

margin: 0 auto;

margin-top: 20rpx;

}

4右箭头

.drawJt{

border: 4rpx solid #c2c0c0;

width: 40rpx;

height: 40rpx;

border-left-color: transparent;

border-top-color: transparent;

transform: rotate( -45deg);//右箭头

margin: 0 auto;

margin-top: 20rpx;

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。