3

我正在尝试为 SMF 论坛软件制作一个 2 列响应式主题。我想在右侧粘贴一列,它将其父级的高度扩展 100%。

我现在的问题是我的浮动侧边栏仅扩展到视口的高度,而不是父元素。我有办法做到这一点吗?

我有 100% 的 html、正文高度、父高度和侧边栏高度。但是,它仅扩展至视口,而不是父元素。

现场示例: http: //xarcms.com/index.php ?theme=3

4

1 回答 1

2

另一种解决方案:

html{
    min-height: 100%; //insted of height
}

#wrapper{
    position: relative;
}

#side-section{
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 20%;
}
于 2012-12-08T17:35:44.450 回答