SRSneha Rautinsnehar.hashnode.dev·Feb 26, 2023 · 4 min readGit & GitHubVersion Control System A version control system, or VCS, tracks the history of changes as people and teams collaborate on projects together. As developers make changes to the project, any earlier version of the project can be recovered at any time. D...00
SRSneha Rautinsnehar.hashnode.dev·Dec 21, 2022 · 13 min readCSS Grid LayoutCSS Grid Layout excels at dividing a page into major regions or defining the relationship in terms of size, position, and layer, between parts of a control built from HTML primitives. Like tables, grid layout enables an author to align elements into ...00
SRSneha Rautinsnehar.hashnode.dev·Dec 4, 2022 · 7 min readCSS Media QueriesMedia queries allow you to apply CSS styles depending on a device's general type (such as print vs. screen) or other characteristics such as screen resolution or browser viewport width. Media queries are used for the following: To conditionally appl...00
SRSneha Rautinsnehar.hashnode.dev·Nov 26, 2022 · 5 min readCSS Box ModelYou know that a web browser renders elements as a rectangular box. know you can understand that Box Model is the most fundamental thing in CSS. It determines the size, margin, padding, border, and margin of an object on the page. Box Model The CSS Bo...00
SRSneha Rautinsnehar.hashnode.dev·Nov 26, 2022 · 4 min readCSS Position PropertyThe position property can help you manipulate the location of an element in the document. The positioning of an element can be done using the top, right, bottom, and left properties. These specify the distance of an HTML element from the edge of the ...00