Search
 
SCRIPT & CODE EXAMPLE
 

CSS

ie11 flex 1

Do not use "flex: 1" or "flex-basis: 0" inside "flex-direction: column" when you need to support IE11

/* not ie */
.child {
  flex: 1;
}

/* ie11 */
.child {
  flex: 1 1 auto;
}
Comment

PREVIOUS NEXT
Code Example
Css :: reset specific css 
Css :: center image 
Css :: how to make background image fit to screen 
Css :: how to put image in button css 
Css :: javavscript use .filter to return odd numbers in an array 
Css :: css image transition fade 
Css :: install code command on mac 
Css :: flex margin between items 
Css :: background color css 
Css :: css prevent scrolling behind overlay 
Css :: repeating-linear-gradient 
Css :: how to add outline to text in css 
Css :: css text shadow -m 
Css :: div color overlay css 
Css :: inherit class in sass 
Css :: center block div 
Css :: css opacity from 0 to 1 
Css :: bootstrap 4 material icon vertical align 
Css :: css no wrap 
Css :: gradient text colors 
Css :: how to set transition in keyframe 
Css :: how to select classes that start with a certian name 
Css :: change image with css 
Css :: how to use image zoom effect in css 
Css :: mac input shadow 
Css :: how to change highlight color on website 
Css :: center absolute element 
Css :: width fit content 
Css :: margin auto not centering 
Css :: internal style 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =