AAyeshainhtmlcssjs.hashnode.dev·Jul 22, 2022 · 6 min readCSS SelectorsCSS selectors define the elements to which a set of CSS rules apply. Basic Selectors: 1.Element Selector: An element selector selects the HTML elements based on the element name. Example: p{ color:blue; } In the above example, p is the element select...00
AAyeshainhtmlcssjs.hashnode.dev·Jul 21, 2022 · 3 min readCSS PositioningCSS Position Types: 1.Relative. 2.Absolute. 3.Fixed. 4.Sticky CSS Position Keywords: To modify the position you’ll need to apply the below properties 1.Top 2.Bottom. 3.Left 4.Right These top, left right and left offsets push the tag from where it is...00