MSMounika Sangishettyinmounikasangishetty.hashnode.dev·Feb 20, 2023 · 10 min readFlexbox in CSSWhat is Flexbox? A Flexbox is a one-dimensional layout model to arrange items in a container. Before introducing the flex property, developers use float or positioning properties to align items in CSS. This results in so much difficulty to arrange el...01A
MSMounika Sangishettyinmounikasangishetty.hashnode.dev·Feb 17, 2023 · 5 min readPosition Property in CSSWhat is the Position property in CSS? The position property in CSS defines how the HTML elements are positioned in a document. The position in CSS contains the properties of the top, left, bottom and right and specifies the final position of an HTML ...01A
MSMounika Sangishettyinmounikasangishetty.hashnode.dev·Feb 15, 2023 · 3 min readCSS Box ModelEvery HTML element in the web page is in the shape of a rectangular box. While learning CSS, the box model concept is one of the most important and basic concepts. The box model concept is all about design and layout. Structure of CSS Box Model The s...00
MSMounika Sangishettyinmounikasangishetty.hashnode.dev·Feb 13, 2023 · 6 min readHow does CSS work?What is CSS? CSS stands for Cascading Style Sheets. CSS is a style sheet language not a programming language like HTML. CSS is used to style the HTML elements on the web page, which means decorating the web page with a certain font, color, background...04MPA
MSMounika Sangishettyinmounikasangishetty.hashnode.dev·Feb 7, 2023 · 4 min readHTML Input types, audio and video ElementsHTML Input Elements The <form> HTML element with attribute action is used to create an HTML form for client input. The <form> element consists of different types of input types. <input type="text"> It creates a single-line text to the input field....02PA