Posts by Cotts • 61 points
3 posts
-
1
votes1
answer307
viewsA: Webpack + Sass generating style.css
In that case you need to include publicPath module.exports = { entry: ["./src/main.js"], output: { filename: "bundle.js", path: __dirname + "/dist", publicPath: "/" },…
-
1
votes1
answer136
viewsA: Normalize css and reset Global
You can use the !important so he doesn’t use the css hierarchy. The code will depend on how it was loaded (The inclusion sequence in HTML and by hierarchy). If for an example you upload this code…
-
1
votes1
answer70
viewsA: Tag to include a reference source
You can use according to this example: <blockquote cite="http://developer.mozilla.org"> <p>Esta é uma citação tirada da Mozilla Developer Center.</p> </blockquote>…