CSS Flex Box: Output: ( Properties: values; )

 CSS Flex: Output: 

( Properties: values; )


Code Page Link -

https://csscoderecord.blogspot.com/2025/06/css-flex-box-code-properties-values.html/

Output Page Link - 

https://csscoderecord.blogspot.com/2025/06/css-flex-box-output-properties-values.html/#output-A-1-a-direction

❌" linking


Go to Full Code Output
A.1.Direction: a) flex;

 1. Logo Link - 

 https://lh3.google.com/u/0/d/1Ek8TuJ5T6smVvtFCtJMjZT69dzgyTCNE=s320

 



2. Image Link - 

https://lh3.google.com/u/0/d/1_BSZ3pPo0LMkGvOjv2U-vYuSZvt-Alk9=s2048

Flex Box: Reference

( Properties: values; )

Index:

A. Perants (div/Content): 

  1. display: a) flex; ( Enables flex layout )
  2. flex-direction: a) row; (default – horizontal left to right)b) row-reverse;  c) row-reverse-start; d) row-reverse-end; e) column-reverse; f) column-reverse-start; g) column-reverse-end; h) start-left, i) start-right
  3. justify-contant: - (horizontal alignment in a row)  a) flex-start; b) flex-end; c) center; d) space-between, e) space-around, g) space-evenly  
  4. align-items: (vertical alignment in a row) a) flex-start; b) flex-end; C) center; d) baselinee) stretch
  5. flex-wrap: a) nowrap; (default), b) wrap; C) wrap-reverse
  6. align-content: (when wrapping) a) flex-start; b) flex-end; c) center; d) space-between; e) space-around; f) stretch;

B. Child (div/Content): 

  1. flex: a) 1; ( — shorthand for flex-grow: 1; flex-shrink: 1; flex-basis: 0%) /* to cover perant */
  2. flex-growa) 1; b) 2; c) 3; (— grows to fill space proportionally) /* to cover perant */
  3. flex-srinc: a) 0;  b) 1; ( how much item shrinks when space is tight)
  4. flex-basis: 300px; ( initial size of flex item before space is distributed )
  5. order: 1, /2, /3; etc. — changes item position in layout
  6. align-selfa) auto; b) flex-start; c) flex-end; d) center; e) baseline; f) stretch;
  7. align-itema) flex-start, b) flex-end, c) center; d) baseline; e) strech; 
  8. justify-contanta) center, a) flex-start; b) flex-end, d) space-between, e) space-around, ( container properties, usually used in permanent)
  9. justify-item: center, flex-start, flex-end, space-between, space-around, 
  10. align-contant: centre, flex-start, flex-end, space-around, space-between;
  11. perant:nth-child(1/2/3/4) {flex-grow: 2/3/4; /* individual size increase X-2/3/4 */} or
  12. perant:nth-child(1/2/3/4) {flex-basis: 300px; /* individual size by 300px */}
  13. parent > div:nth-child(2) {flex-grow: 3; /* make 2nd item grow 3x */}
  14. parent > div:nth-child(3) {
      flex-basis: 300px; /* initial width of 300px for 3rd item */ }
Details: (Links)

Output/Display: - Links

A (perant) 

A.1. " display: flex ;". Output/Display: 

a) display: flex;   ( id="A-1-a-direction-flex-output" )          Output/Display: -   Links


A.2. " flex-direction: ;" Output/Display

a) flex-direction: row; (default – horizontal left to right)                   Output/Display: -    Link
b) row-reverse;     Output/Display: -    Link 
c) row-reverse-start;   Output/Display: - Link
d) row-reverse-end;   Output/Display: - Link
e) column-reverse;   Output/Display: - Link
f) column-reverse-start;   Output/Display: - Link
g) column-reverse-end;   Output/Display: - Link
h) start-left;                  Output/Display: - Link
i) start-right;                 Output/Display: - Link

(Child) 

B.1. " direction:  ;". Output/Display: Links

a) direction: flex
b) 
C) 
Ttyvgy

B.2. " flex:  ;". Output/Display: Links

a)
b) 
C) 
Fghh

Full Code: - Links

A (perant) 

A.1. - "direction: ; " Full Code: - Links 

a) direction: flex; 
b) 
C) 

A.2. - "direction: ; " Full Code: - Links 

a) direction: flex; 
b) 
C) 

Full Code: - Links

(Child) 

B.1. - " : ; " Full Code: - Links

a) direction: flex; 
b) 
C) 

B.2. - " : ; " Full Code: - Links

a) direction: flex; 
b) 
C) 

Fgyu


Project: Code-Output/Display:

Output/Display: A (perant)

A.1. - " display:  ;" 

a) display: flex; ( id-   )

Full Code - Link:

Code-Output : 

Code Output: display: flex;

A.1.a.  display: flex;

  1. display:
    • flex;


Primary Output: Multi Div

1
2
3
4


Output After Applying "Diplay: flex;" : Multi Div

1
2
3
4


Output/Display: A (perant)

A.2.a) - " flex-direction:  ;" 

a) flex-direction: row; ( id-   )

Full Code - Link:

Code-Output : 

Dghh❌❌


Output/Display: A (perant)

A.2.b) - " flex-direction: ;" 

b) flex-directionrow-reverse;  ( id-   )

Full Code - Link:

Code-Output : 

Dfhhj

Output/Display: A (perant)

A.2.c) - " flex-direction: ;" 

C) flex-directionrow-reverse-start;  ( id- )

Full Code - Link:

Code-Output : 



Output/Display: B (Child)

B.1. - (Child) " direction: " 

a) direction: flex; ( id-   )

Full Code - Link:

Code-Output : 

Sfggh


b) direction: flex; ( id-   )

Full Code - Link:

Code-Output : 

Drggh


B.2. - (Child) " direction: " 

a) direction: flex; ( id-   )

Full Code - Link:

Code-Output : 

Sfggh


b) direction: flex; ( id-   )

Full Code - Link:

Code-Output : 

Drggh


To Make div, areas, Contants arrange Horizontal: 


 No.-1 direction: flex;

Code: 

No.-2 position: relative;

Code-2:

. persant {
position: relative;
}

LTT Logo


Cvhh



Comments

Popular posts from this blog

CSS Flex Box: Code:( Properties: values; )

CSS Flex Box: Output