css 指向效果 选中效果

发布时间:2024年01月18日
<style scoped lang="scss">

.headeritem {
	display: grid;
	flex-direction: row;
	text-align: center;
	align-items: center;
	line-height: 20px;
	font-size: 10px;
	min-width: 54px;
	height: 100%;
	padding: 2px;
	margin-left: 2px;
	color: #000;

	// border-left: 1px groove   #8d7e7e77;
	.headeritem-ico {
		// padding-top: 4px;
		height: 20px;
		line-height: 20px;
	}
	//指向效果
	&:hover {
		// background-color: #409eff;
		background-color: var(--leftMenuSub-bg);
		
		border-radius: 4px;
		color: #fff;
		// border:1px solid #8d7e7e77;#56b0f9 #325d89
	}

	//选中效果
	&.selected {
		background-color: var(--leftMenuSub-bg);
		border-radius: 4px;
		// border:1px solid #8d7e7e77;
		color: #fff;
	}
}
</style >

文章来源:https://blog.csdn.net/tomandllj/article/details/135666758
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。