YFYaasir Falanainteckierite.hashnode.dev·Aug 31, 2022 · 2 min readHow To Style Scrollbar With CSSScrollbar is the long thin section at the edge of a computer display by which contents on the screen can be scrolled. In this article, you will learn how to to style scrollbars on a website using CSS. Components of a scrollbar A scrollbar is made up ...00
YFYaasir Falanainteckierite.hashnode.dev·Mar 14, 2022 · 2 min readCss Box-sizingThe CSS box-sizing property is used to define how an element's total width and height is calculated. The total width and height of an element is calculated like this by default: width + padding + border = Actual width of the object Height + padding ...01G
YFYaasir Falanainteckierite.hashnode.dev·Feb 21, 2022 · 1 min readList of JavaScript keywords and reserved wordsJavaScript reserved words are words that have special uses in JavaScript. They can't be used as variable names. Here is a list of JavaScript keywords and reserved words. abstract arguments await boolean break byte case catch char...00
YFYaasir Falanainteckierite.hashnode.dev·Feb 16, 2022 · 2 min readRules of Naming Variables in JavaScriptThere are few rules we need to follow when naming variables in JavaScript: A variable name cannot be preceded by a number. let 2years = 2022; The above declaration will return an error because of the the variable name starts with a number. Variabl...00
YFYaasir Falanainteckierite.hashnode.dev·Jan 24, 2022 · 2 min readRelative units in CSSCSS relative units are used to specify the size of an element relative to the size of another element in a HTML file. CSS relative units allows elements to scale up and down according to the size of other elements. The rem unit The rem unit is relat...00