跳至內容

遊樂場

請等待 runkit 初始化,然後按一下 run 按鈕

const stylus = require("stylus"); const str = ` // 您的 stylus 程式碼在此 body color white ` stylus.render(str, { filename: 'playground.css' }, function(err, css){ if (err) throw err; console.log("stylus 編譯結果: ", css); });