PDPooja Deshmukhinpoojadesh.hashnode.dev·Dec 20, 2022 · 5 min readArray in JavaScriptThe array is a variable which can hold more than one value. This article is about the array and some methods of array. let fruits = ['Banana','Mango','Apple','Orange','Grapes']; //here we have fruits array which holds more than one fruits Array ele...00
PDPooja Deshmukhinpoojadesh.hashnode.dev·Dec 8, 2022 · 5 min readCSS Pseudo elements and classesPseudo-elements Pseudo elements is used to apply styling to specified part of the selected element. For example to style the first line of the paragraph you can use :: first-line and now you can do whatever styling you want to do on first line of the...00
PDPooja Deshmukhinpoojadesh.hashnode.dev·Dec 6, 2022 · 5 min readCSS Box ModelThe css box model is a box that wraps around every HTML element, in other words it is a container that has margins, padding, height, width and the content itself. This article is the honest try to explain box model in simpler way and make more unders...01D
PDPooja Deshmukhinpoojadesh.hashnode.dev·Dec 5, 2022 · 10 min readCSS Grid LayoutThere are multiple ways through which the layout of your web page can be designed,Grid is one of them. Grid is two-dimensional(rows and column) grid based design layout system. The guide is the honest try to make you comfortable with Grid and help yo...00
PDPooja Deshmukhinpoojadesh.hashnode.dev·Dec 4, 2022 · 3 min readPositions in CSSThe position is the css property which sets how element can be positioned in document. position can be static relative absolute fixed sticky position: static; position: relative; position: absolute; position: fixed; position: sticky; 1. Static Sta...00