Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
In this example,
.logout
item will grow twice as quick as
.home
item
.home {
    flex-grow: 1;
}
.logout{
    flex-grow: 2;
}
by Valeri Tandilashvili
4 years ago
0
CSS
properties
CSS Flexbox Course
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
4 years ago
0
CSS
properties
CSS Flexbox Course
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
4 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
4 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
4 years ago
0
CSS
properties
CSS
1
When we use
flex-direction: column;
, then
flex-basis
means flex item box height
by Valeri Tandilashvili
4 years ago
0
CSS
properties
CSS Flexbox Tutorial
1
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
4 years ago
0
CSS
properties
CSS Flexbox Tutorial
1
Error: Attribute maxlength is only allowed when the input type is email, password, search, tel, text, or url
by Valeri Tandilashvili
4 years ago
0
HTML
Error
1
Error: CSS: width: only 0 can be a unit. You must put a unit after your number
<td style="width:32">
by Valeri Tandilashvili
4 years ago
0
HTML
Error
1
Selects all
h2
elements that has parent with both
cl1
and
cl2
classes
.cl1.cl2 h2{
    color: red;
}
by Valeri Tandilashvili
4 years ago
0
CSS
selectors
CSS
1
Results: 1580