KYkavita yadavinkavita.hashnode.dev·Jan 29, 2023 · 3 min readCSS Box Model (Padding, Margin, Border)The CSS box model is a container that contains multiple properties including borders, margin, padding, and the content itself. It is used to create the design and layout of web pages. It can be used as a toolkit for customizing the layout of differen...00
KYkavita yadavinkavita.hashnode.dev·Oct 8, 2022 · 2 min readPosition in cssThe position CSS property sets how an element is positioned in a document. The top, right, bottom, and left properties determine the final location of positioned elements. position: static; position: relative; position: absolute; position: fixed; pos...00
KYkavita yadavinkavita.hashnode.dev·Oct 8, 2022 · 2 min readPseudo selector in csspseudo-class A pseudo-class is a selector that selects elements that are in a specific state, e.g. they are the first element of their type.They tend to act as if you had applied a class to some part of your document, often helping you cut down on ex...00
KYkavita yadavinkavita.hashnode.dev·Oct 6, 2022 · 3 min readHTML Tag List:-HTML Cheat SheetHTML stands for Hypertext Markup Language, and it is the most widely used language to write Web Pages. Hypertext refers to the way in which Web pages (HTML documents) are linked together. Thus, the link available on a webpage is called Hypertext. As ...00
KYkavita yadavinkavita.hashnode.dev·Sep 11, 2022 · 2 min readJavascript Interview cheat sheetTable of content 1.Hoisting 2.Single thread 3.Call stack Hoisting JavaScript Hoisting refers to the process whereby the interpreter appears to move the declaration of functions, variables or classe...00