Cchandrakiraninchandrakiran.hashnode.dev·May 9, 2023 · 2 min readVideo and Audio in HTMLThe first influx of online videos and audio was made possible by proprietary plugin-based technologies like Flash and Silverlight. Both of these had security and accessibility issues, and are now obsolete, in favor of native HTML solutions <video> an...00
Cchandrakiraninchandrakiran.hashnode.dev·Feb 28, 2023 · 12 min readGRID in CSSIntro CSS GRID is a two-dimensional grid-based layout .in the past, we used tables, float, positions, and inline-block. All of these methods were essentially hacks and left out a lot of necessary functionality (vertical centering, for instance). Flex...00
Cchandrakiraninchandrakiran.hashnode.dev·Feb 20, 2023 · 3 min readMedia Query CSSCSS Media queries are a way to target browsers by specific characteristics, features, and user preferences, then apply styles or run other code based on those things. Perhaps the most common media queries in the world are those that target particular...00
Cchandrakiraninchandrakiran.hashnode.dev·Feb 11, 2023 · 9 min readFlexbox(CSS)Introduction: Flexbox is a layout structure, which should be used to lay out HTML elements instead of using positions and float. It will work under a container (parent), and the items (child) in the container are affected by the Flex property. There ...00
Cchandrakiraninchandrakiran.hashnode.dev·Feb 4, 2023 · 3 min readPositioning (CSS)The position is a CSS property that sets the positioning of elements for top, right, bottom, and left in a document. There are five types: Static Fixed Sticky Relative Absolute Static: The element which positioning according to the flow of the...00