css col-3,CSS 3 col template 100% same height

That's a great question! It took me quite a while to create a graceful solution for you.

What you need is the dynamic sticky footer technique with an extra container for columns.

HTML

foo

Contents A

Contents B

Contents C

bar

CSS

/*************************

* Sticky footer hack

* Source: http://pixelsvsbytes.com/blog/2011/09/sticky-css-footers-the-flexible-way/

************************/

/* Stretching all container's parents to full height */

html, body {

height: 100%;

margin: 0;

padding: 0;

}

/* Setting the container to be a table with maximum width and height */

#container {

display: table;

height: 100%;

width: 100%;

}

/* All sections (container's children) should be table rows with minimal height */

.section {

display: table-row;

height: 1px;

}

/* The last-but-one section should be stretched to automatic height */

.section.expand {

height: auto;

}

/*************************

* Full height columns

************************/

/* We need one extra container, setting it to full width */

.columns-container {

display: table-cell;

height: 100%;

}

/* Creating columns */

.column {

/* The float:left won't work for Chrome for some reason, so inline-block */

display: inline-block; /* for this to work, the .column elements should have NO SPACE BETWEEN THEM */

vertical-align: top;

height: 100%;

width: 33.3333%;

}

/****************************************************************

* Just some coloring so that we're able to see height of columns

****************************************************************/

header { background-color: yellow; }

#a { background-color: pink; }

#b { background-color: lightgreen; }

#c { background-color: lightblue; }

footer { background-color: purple; }

Demo

Compact columns content: http://jsfiddle.net/hsX5q/19/

One of the column's content overflows window height: http://jsfiddle.net/hsX5q/20/

PS

You've got a wrong CSS selector in your question. The correct would be:

html > body > div-wrapper > div-left,

html > body > div-wrapper > div-separator,

html > body > div-wrapper > div-content {

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值