SASS 由于评论无效 CSS
SASS invalid CSS due to comment
我目前正在处理 SASS 编译器的问题。我已经开始使用 CSS 创建 Wordpress 网站的基本布局,但编译器 Prepros 不允许我编译文件。我担心它可能与 style.css 文件开头的注释块有关。如果您知道可能是什么问题,那就太好了。
style.sass
/*
Theme Name: Xtra Child
Theme URI: http://themeforest.net/user/Codevz/portfolio
Description:Sample child theme of Xtra theme for customization.
Author: Codevz
Author URI: http://themeforest.net/user/Codevz
Template: xtra
Version: 1.0
*/
@import "global.sass"
我从 Prepros 得到的错误日志:
如果你能告诉我如何解决这个问题,那就太好了。感谢您的时间。 :)
试试这个:
/*Theme Name: Xtra Child
*Theme URI: http://themeforest.net/user/Codevz/portfolio
*Description:Sample child theme of Xtra theme for customization.
*Author: Codevz
*Author URI: http://themeforest.net/user/Codevz
*Template: xtra
*Version: 1.0 */
对于 SASS 评论,结束评论 */
需要在最后一行,而不是下面。希望有用
我目前正在处理 SASS 编译器的问题。我已经开始使用 CSS 创建 Wordpress 网站的基本布局,但编译器 Prepros 不允许我编译文件。我担心它可能与 style.css 文件开头的注释块有关。如果您知道可能是什么问题,那就太好了。
style.sass
/*
Theme Name: Xtra Child
Theme URI: http://themeforest.net/user/Codevz/portfolio
Description:Sample child theme of Xtra theme for customization.
Author: Codevz
Author URI: http://themeforest.net/user/Codevz
Template: xtra
Version: 1.0
*/
@import "global.sass"
我从 Prepros 得到的错误日志:
如果你能告诉我如何解决这个问题,那就太好了。感谢您的时间。 :)
试试这个:
/*Theme Name: Xtra Child
*Theme URI: http://themeforest.net/user/Codevz/portfolio
*Description:Sample child theme of Xtra theme for customization.
*Author: Codevz
*Author URI: http://themeforest.net/user/Codevz
*Template: xtra
*Version: 1.0 */
对于 SASS 评论,结束评论 */
需要在最后一行,而不是下面。希望有用