1

在标题之后,我有一个 div,其中包含另外两个彼此相邻的 div。我想在它们之间创建一个边界。我尝试使用左 div 的右边框或右 div 的左边框,但它们不能正常工作。

右边的div可以有很多内容,所以我必须为它做overflow:hidden,这样我就可以滚动页面了。但是如果我只有很少的内容,div 不会垂直填充整个页面,所以左边框会很小。在这里-> http://www-user.tu-cottbus.de/~carbusor/Red%20Diamond/html/index.html你可以看到我在说什么。

当右 div 垂直增加时,我希望边框到底部,以跟随它的大小。

HTML:

<div id="wrapper">
        <div id="leftsidebar">
            <form id="logoutForm" action="index.html">
                <h1 id="login_title">Logout</h1>
                <fieldset id="actions">
                    <input id="logout" type="submit" value="Log out" />
                </fieldset>
            </form>
        </div>
        <div id="main">
            <span id="location">Home</span>
            <a href="member_news.html" class="normal_link">News</a>
        </div>
    </div>

CSS:

div#wrapper{
  position:absolute;
  top:25%;
  width:100%;
}

div#leftsidebar{
  /*position:absolute;
  top:25%;*/
  width:19.87%;
  height:100%;
  min-width:200px;
  float:left;
}

div#main{
  /*position:absolute;
  top:25%;
  left:20%;*/
  /*width:79.81%;
  float: left;*/
  font-size:1.2em;
  border-left-color:white;
  border-left-style:solid;
  border-left-width:3px;
  overflow:hidden;
  padding-bottom:2%;
}

我怎样才能得到我想要的?

4

1 回答 1

1

给包装器和主 div 正确的高度,你会得到结果。

div#wrapper{
    position:absolute; /*Stayed this whay cause you needed it*/
    top:25%;
    height: 75%; /**Make the wrapper contain all the needed space*/
    width:100%; 
}
div#main{
   height:96%; 
   /**Value actually needs be a bit less then 100 due to padding*/
   .... /**You're code here*/
}​

你可以在下面的 jsFiddle 上看到结果。 http://jsfiddle.net/pY6nF/

于 2012-12-30T19:58:44.650 回答