NSNikhil Somaniinnikhil15.hashnode.dev·Dec 26, 2022 · 9 min readArray in JavaScript and its MethodsArray In JavaScript Array is an ordered collection of data. In Array, a single variable is used to store multiple values. In Array each item has an index, we can access the elements by using the index number associated with it. The indexing in arrays...00
NSNikhil Somaniinnikhil15.hashnode.dev·Dec 1, 2022 · 2 min readCSS Media Queries!!Websites looks different on different screens. A site will looks different on mobile and laptop. This is possible because of media queries. Media queries are used to make the site responsive. We can use max-width and min-width with media queries. Whe...00
NSNikhil Somaniinnikhil15.hashnode.dev·Nov 23, 2022 · 4 min readCSS GridGRID We use flexbox for displaying the content in 1 dimension, either we can arrange them in rows or we can arrange them in rows, but if we want to display our content in 2 dimensional that is rows as well as in column then we use GRID. To use grid ...00
NSNikhil Somaniinnikhil15.hashnode.dev·Nov 21, 2022 · 4 min readCSS Positions!Position In CSS the position property is used to set the position of an element. By applying the position property we can use top, left, bottom and right position to setup an element at a particular place in our webpage. The default value of position...00
NSNikhil Somaniinnikhil15.hashnode.dev·Nov 20, 2022 · 5 min readCSS Flexbox and Properties!Flexbox Flexible Box Module commonly known as Flexbox is an easy way to align items into our webpage. It is a one dimensional layout method to arrange the items in row or column. Without Flexbox also we can achieve the results we want but it will be ...01S