Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Error: Attribute maxlength is only allowed when the input type is email, password, search, tel, text, or url
by Valeri Tandilashvili
5 years ago
0
HTML
Error
1
.container {
  display: flex;
  flex-direction: row-reverse;
}
The direction of the flexible items inside the .container is set in reverse order.
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Tutorial
2
justify-content
is always working on a main axis. It means, that when
flex-direction: column;
, then
justify-content
property aligns items vertically
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Tutorial
1
When we use
flex-direction: column;
, then
flex-basis
means flex item box height
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Tutorial
1
The
flex-flow
property is a shorthand property for:
flex-direction
and
flex-wrap
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS
1
With
min-width
property there will be a scroll when box's width is less then specified width value
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Tutorial
1
The replaced content is sized to maintain its aspect ratio while filling the element's entire content box. The object will be clipped to fit.
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS
1
A number specifying how much the item will shrink relative to the rest of the flexible items. Note:
Default value is 1
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Course
1
In this example,
.logout
item will grow twice as quick as
.home
item
.home {
    flex-grow: 1;
}
.logout{
    flex-grow: 2;
}
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Course
1
nowrap
is the default value of the property. The value Specifies that the flexible items will not wrap. Resource: https://youtu.be/k32voqQhODc?t=1154
by Valeri Tandilashvili
5 years ago
0
CSS
properties
CSS Flexbox Course
1
Results: 1578