DEV Community

Cover image for 2 Essential CSS Properties
Md Nazmul Islam
Md Nazmul Islam

Posted on

2 Essential CSS Properties

1.Grid
CSS Grid

CSS Grid Layout is used to divide a page into major parts.

Like tables, grid layout make an author to align elements into columns and rows. However, by the use of CSS grid we can easily make attractive looked webpages. By using it we can easily make responsive website with pixcl perfection.

Example:

HTML:

HTML
CSS:

CSS
Output:

Result

2.Flex
CSS Flex

The flex CSS shorthand property is the combination of flex-grow, flex-shrink, and flex-basis property. It is used to set the length of flexible items. The flex property is much responsive and mobile-friendly. It is easy to position child elements and the main container. The margin doesnโ€™t collapse with the content margins. The order of any element can be easily changed without editing the HTML section.

Syntax:

CSS Flex Syntax

Top comments (0)