© 2023 Hashnode
#day3
Flexbox By default container has property of display: block; i.e. each element on the next line. display: flex; using this all elements added side by side. once display flex activated on container it unlocks flex-direction ,align-items , …
CSS (Cascading Style Sheet) Into to CSS CSS is used to style the website. Methods for adding CSS There are three methods Inline CSS Style directly in the HTML element. <h1 style="color : Red">My name is Avadhut</h1> Internal CSS Usi…