我有一段CSS,它给出了一个错误CSS: Parse。它与{}有关。请帮我检查一下。提前感谢!
@media only screen and (min-width: 768px){
.table td, .table th {
padding: 5px!important;
.svg-5 {
width: 1rem!important;
height: 1rem!important;
}
span.text-title {
font-size: 14px!important;
}
}
}
body.yivic-main .yivic-post-single .entry-content > p:first-of-type:first-letter {
float: unset;
font-size: unset;
line-height: unset;
margin: unset;
}
body.yivic-main .yivic-post-single .entry-content {
line-height: unset;
text-align: unset;
font-size: unset;
}
发布于 2022-04-11 07:26:49
您必须在以下文件中编译:
@media only screen and (min-width: 768px) {
.table td, .table th {
padding: 5px !important;
}
.table td .svg-5, .table th .svg-5 {
width: 1rem !important;
height: 1rem !important;
}
.table td span.text-title, .table th span.text-title {
font-size: 14px !important;
}
}您可以在以下几个网站上进行在线操作:https://www.cssportal.com/scss-to-css/
https://stackoverflow.com/questions/71824016
复制相似问题