CSS-DAY03

CSS样式知识点总结:

1.CSS1 !important 语法:提升指定样式规则的应用优先权。

.cloud-card-top .cloud-card-right {
	padding: 0 5px;
	background-color:orange;
	border-radius: 2px;
	line-height: 20px !important;
	color: #ffffff;
	position: absolute;
	right: 15px;
	top: 20px;
}
原文地址:https://www.cnblogs.com/beidongxing/p/7390062.html