TechCodex@programming.dev to Programmer Humor@lemmy.mlEnglish · 1 year agoJavascript can create atomic bombsprogramming.devimagemessage-square65fedilinkarrow-up1660arrow-down153
arrow-up1607arrow-down1imageJavascript can create atomic bombsprogramming.devTechCodex@programming.dev to Programmer Humor@lemmy.mlEnglish · 1 year agomessage-square65fedilink
minus-squareexscape@kbin.sociallinkfedilinkarrow-up24·1 year agoCSS is used to create the design, basically the look (colors, layout and so on), but no substance. JavaScript is used to implement code and logic. HTML + JavaScript would typically (since you’re supposed to use CSS to create colors and design) look very dull, thus the black-and-white Oppenheimer.
minus-squareRikudou_Sage@lemmings.worldlinkfedilinkEnglisharrow-up1arrow-down1·1 year agodocument.querySelector('.whatever').style.color = "red"; Don’t recommend, though.
minus-squareexscape@kbin.sociallinkfedilinkarrow-up2·1 year agoSure, but setting the .style attribute could really be argued as using CSS, just with a different interface. W3Schools refers to this as “inline CSS”.
CSS is used to create the design, basically the look (colors, layout and so on), but no substance.
JavaScript is used to implement code and logic.
HTML + JavaScript would typically (since you’re supposed to use CSS to create colors and design) look very dull, thus the black-and-white Oppenheimer.
document.querySelector('.whatever').style.color = "red";
Don’t recommend, though.
Sure, but setting the .style attribute could really be argued as using CSS, just with a different interface. W3Schools refers to this as “inline CSS”.