在 vnext 中编辑 CSS 时出现意外的标记
当我尝试通过 Vnext 或 Webmatrix v2 beta 编写一些 css 时,我收到了意外标记的错误: 有时我更改某些内容并出现意外错误;
当我尝试这个时
body
{
background-color :Aqua;
}
,我想知道所有浏览器(moz,chrome)都会给我错误 “未捕获的语法错误:意外的令牌:”
后来我从 vs2010 保存它,但仍然有错误。有人可以告诉我我哪里做错了吗?
When I try to write some css through Vnext or Webmatrix v2 beta I got error that unxpected token :
sometime I change something and got error that unexpected error ;
When I try this
body
{
background-color :Aqua;
}
I wonder all browser (moz,chrome) give me error that "Uncaught SyntaxError: Unexpected token :"
Later I save it from vs2010 but i still have error. Can someone tell me where I am doing wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该错误表明您正在尝试像加载 Javascript 一样加载 CSS。
The error suggests that you're trying to load your CSS as if it were Javascript.
也许 Vnext 期望
:
位于background-color
旁边?试试这个
背景颜色:Aqua
Maybe Vnext is expecting the
:
to be beside thebackground-color
?Try this
background-color: Aqua