CSS给出错误:“样式规则的预期选择器”

Posted

技术标签:

【中文标题】CSS给出错误:“样式规则的预期选择器”【英文标题】:CSS giving error: "Expected selector for the style rule" 【发布时间】:2020-04-26 17:24:25 【问题描述】:

我正在使用 ASP.net Web 应用程序,使用以下 CSS 修改默认 CSS 时会报错:

样式规则的预期选择器

这似乎是一个 CSS 版本问题。我如何知道我使用的是哪个版本的 CSS?如何升级?

这是取自Codepen的CSS

$white: #fff;
$google-blue: #4285f4;
$button-active-blue: #1669F2;

.google-btn 
width: 184px;
height: 42px;
background-color: $google-blue;
border-radius: 2px;
box-shadow: 0 3px 4px 0 rgba(0,0,0,.25);
.google-icon-wrapper


position: absolute;
margin-top: 1px;
margin-left: 1px;
width: 40px;
height: 40px;
border-radius: 2px;
background-color: $white;


.google-icon 
position: absolute;
margin-top: 11px;
margin-left: 11px;
width: 18px;
height: 18px;


.btn-text 
float: right;
margin: 11px 11px 0 0;
color: $white;
font-size: 14px;
letter-spacing: 0.2px;
font-family: "Roboto";


&:hover 
box-shadow: 0 0 6px $google-blue;


&:active 
background: $button-active-blue;




@import url(https://fonts.googleapis.com/css?family=Roboto:500);

【问题讨论】:

在 .google-icon-wrapper 之前缺少一个 【参考方案1】:

您可以使用以下 css 语法转换您的语法

检查sn-p:

@import url(https://fonts.googleapis.com/css?family=Roboto:500);
.google-btn 
  width: 184px;
  height: 42px;
  background-color: #4285f4;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);

.google-btn .google-icon-wrapper 
  position: absolute;
  margin-top: 1px;
  margin-left: 1px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background-color: #fff;

.google-btn .google-icon 
  position: absolute;
  margin-top: 11px;
  margin-left: 11px;
  width: 18px;
  height: 18px;

.google-btn .btn-text 
  float: right;
  margin: 11px 11px 0 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-family: "Roboto";

.google-btn:hover 
  box-shadow: 0 0 6px #4285f4;

.google-btn:active 
  background: #1669F2;
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
<div class="google-btn">
<div class="google-icon-wrapper">
<img class="google-icon" src="https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg" />
</div>
<p class="btn-text"><b>Sign in with google</b></p>
</div>

【讨论】:

感谢@Basil,但为什么它在 codepen 中运行良好 那个语法不是 css 它是一个接受变量的 scss 检查这篇文章:***.com/questions/46400443/…

以上是关于CSS给出错误:“样式规则的预期选择器”的主要内容,如果未能解决你的问题,请参考以下文章

错误:“body”之后的无效 CSS:预期的选择器或规则,在第 4 行是“”

如何将从 Chrome 复制的 css 选择器路径转换为 ​​beautifulsoup 对象?

CSS 选择器错误 - 悬停时未显示子菜单

小tip: CSS后代选择器可能的错误认识——张鑫旭

Selenium-python 中的 css 选择器中的括号 [?] 的问题

Python:在 lxml.cssselect 中使用的 CSS 选择器