使用伪元素让左侧出现一个竖着的红色长条

阅读 8

2022-04-17

.scroll-item {
			background-color: #ffffff;
			position: relative;

			&::before {
				content: '';
				display: block;
				width: 3px;
				height: 50%;
				background-color: red;
				position: absolute;
				top: 50%;
				left: 0;
				transform: translateY(-50%);
			}
		}

相关推荐

精彩评论(0)

0 0 举报