Role of CSS flex-direction Property: Column Value

Anvi Jain
Updated on 24-Jun-2020 15:40:05

145 Views

Use the flex-direction property with column value to set the flex-items verticallyYou can try to run the following code to implement the column value:ExampleLive Demo                    .mycontainer {             display: flex;             flex-direction: column;             background-color: orange;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          

CSS Shorthand Property for Flex Grow, Flex Shrink, and Flex Basis

Chandu yadav
Updated on 24-Jun-2020 15:39:24

194 Views

Use the flex property to add flex-grow, flex-shrink and flex-basis properties in a single line.You can try to run the following code to implement the flex propertyExampleLive Demo                    .mycontainer {             display: flex;             background-color: orange;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          Q7          Q8          Q9          

Shorthand CSS Property for Flex Direction and Flex Wrap

George John
Updated on 24-Jun-2020 15:38:04

244 Views

Use the flex-flow property to set the flex-direction and flex-wrap property in a single property. You can try to run the following code to implement the flex-flow propertyExampleLive Demo                    .mycontainer {             display: flex;             background-color: orange;             flex-flow: column wrap;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          Q7          Q8          Q9          

Align Flex Lines with CSS

Vrundesha Joshi
Updated on 24-Jun-2020 15:04:19

441 Views

Use the align-content property to align the flex lines. You can try to run the following code to implement the align-content property:ExampleLive Demo                    .mycontainer {             display: flex;             background-color: RED;             align-content: space-between;             height: 150px;             width: 600px;             flex-wrap: wrap;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          Q5          Q6          

Usage of CSS align-items Property with flex-end Value

Vrundesha Joshi
Updated on 24-Jun-2020 14:59:45

152 Views

Use the align-items property with value flex-end to align flex items on the bottom.You can try to run the following code to implement the flex-end value:ExampleLive Demo                    .mycontainer {             display: flex;             height: 300px;             background-color: red;             align-items: flex-end;          }          .mycontainer > div {             background-color: orange;             text-align: center;             line-height: 60px;             font-size: 30px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          

Usage of CSS align-content Property with Center Value

George John
Updated on 24-Jun-2020 14:59:10

176 Views

Use the align-content property with value center to set the flex lines to the center.You can try to run the following code to implement the center valueExampleLive Demo                    .mycontainer {             display: flex;             height: 200px;             background-color: red;             align-content: center;             flex-wrap: wrap;          }          .mycontainer > div {             background-color: yellow;             text-align: center;             line-height: 60px;             font-size: 30px;             width: 100px;             margin: 5px;          }                     Queue                Q1          Q2          Q3          Q4          Q5          Q6          Q7          Q8          

Horizontally Align Flex Items in CSS

Ankith Reddy
Updated on 24-Jun-2020 14:56:56

142 Views

Use the justify-content property to horizontally align the flex items when the items do not use all available space on the main-axis.You can try to run the following code to implement the justify-content propertyExampleLive Demo                    .mycontainer {             display: flex;             background-color: blue;             justify-content: center;          }          .mycontainer > div {             background-color: white;             text-align: center;             line-height: 40px;             font-size: 25px;             width: 100px;             margin: 5px;          }                     Quiz                Q1          Q2          Q3          Q4          

Position Text to Bottom Right on an Image with CSS

Nishtha Thakur
Updated on 24-Jun-2020 14:52:01

1K+ Views

To position text to bottom left, use the bottom and right property. You can try to run the following code to position text to bottom right on an image:ExampleLive Demo                    .box {             position: relative;          }          img {             width: 100%;             height: auto;             opacity: 0.6;          }          .direction {             position: absolute;             bottom: 10px;             right: 19px;             font-size: 13px;          }                     Heading One       Below image has text in the bottom right:                          Bottom Right Corner          

CSS Flex Container Properties

George John
Updated on 24-Jun-2020 14:28:15

199 Views

The following are the CSS flex container properties flex-direction flex-wrap flex-flow justify-content align-items align-content

Center Triangle at Bottom of Div in HTML with CSS

Vrundesha Joshi
Updated on 24-Jun-2020 14:25:53

917 Views

To set the triangle at the center and at the bottom of div, use the following. You need to set left to 50% −.demo: after {    position: absolute;    border-top: solid 50px #e15915;    border-left: solid 50px transparent;    border-right: solid 50px transparent;    top: 100%;    left: 50%;    margin-left: -50px;    width: 0;    height: 0; }

Advertisements