ACArchit Chaurasiainarchitwrites.hashnode.dev·Feb 6, 2023 · 5 min readCSS Box ModelLet’s understand one of the most fundamental web design principles the CSS box model. The CSS box model enables us to make changes to your web page layouts and the elements to improve your website look and feel. Not clear much. Ok let's dive into CSS...00
ACArchit Chaurasiainarchitwrites.hashnode.dev·Dec 23, 2022 · 6 min readArray and its methodsWhat is Array? Arrays can be a collection of elements of any type i.e. you can create an array with elements of type string, Boolean, Number, Objects, and even other arrays. The array is represented by a pair of square brackets []. All the elements i...00
ACArchit Chaurasiainarchitwrites.hashnode.dev·Nov 25, 2022 · 3 min readCSS PositionYou want to design a website where you want to control your element's position on your website like you want to stack on top of one another. But if you want to do the above magic, you need to override your default website position. To do the above, ...010
ACArchit Chaurasiainarchitwrites.hashnode.dev·Nov 21, 2022 · 6 min readFlexbox & its propertiesDesigning a responsive website you would want your elements to be dynamic in their behavior such as width, height, resolution, etc according to the different screens and devices using the website. Here using flexbox your website elements get adjusted...010
ACArchit Chaurasiainarchitwrites.hashnode.dev·Nov 14, 2022 · 6 min readIntroduction of CSS & its SelectorsWhat is CSS? Without CSS(Cascading Style Sheet), the browser will load your HTML file with the default color of the text black, the page's background will be default white, and the heading will be in default size. Here CSS language handles the looks...00