Search
 
SCRIPT & CODE EXAMPLE
 

CSS

make three column with equal height using flexbox

.pseudo-three-col {
  position: relative;
  background: #eee;
  z-index: 1;
  width: 100%;
}
.pseudo-three-col .col {
  position: relative;
  width: 27%;
  padding: 3%;
  float: left;
}
.pseudo-three-col .col:nth-child(1) { left: 33%; border:solid black }
.pseudo-three-col .col:nth-child(2) { left: -33.3%; }
.pseudo-three-col .col:nth-child(3) { left: 0; }
.pseudo-three-col:before, .pseudo-three-col:after {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 33.4%;
  width: 33.4%;
  height: 100%;
  background: #ccc;
}
.pseudo-three-col:after {
  left: 66.667%;
  background: #eee;
}
Comment

PREVIOUS NEXT
Code Example
Css :: align grid items with end 
Css :: how to add a photo using css beside a paragraph in html 
Css :: Media Query smartphone only 
Css :: rotate image in css 
Css :: laravel reference css in public 
Css :: select dropdown icon change 
Css :: griddy css 
Css :: text flow top to bottom 
Css :: css mobile height 100vh 
Css :: clamp css 
Css :: select even child css 
Css :: Resetting Default Table Styles 
Css :: How can I horizontally align my divs? 
Css :: mask image css 
Css :: css how to change font colr 
Css :: how to use font awesome with tailwind css 
Css :: placeholder color in css 
Css :: how to set transition in keyframe 
Css :: arrow up css 
Css :: how to add a vertical line in html 
Css :: scrollbar css 
Css :: css hsla 
Css :: html css background linear-gradient 
Css :: margin css 
Css :: vertical and horizontal align center div 
Css :: centered navigation 
Css :: how to select child when hover on parent element css 
Css :: lynx install bash 
Css :: can we block onclick of button using css 
Css :: create shadow css 
ADD CONTENT
Topic
Content
Source link
Name
8+8 =