Vertical line spacer between two divs

前端 未结 7 706
刺人心
刺人心 2021-02-04 02:58

So I have two divs. One left div with navigation links and one right div that populates with content depending on what link you click on the left. I would like to have a verti

7条回答
  •  忘掉有多难
    2021-02-04 03:49

    Assuming your left nav div has a fixed height, or a height that doesn't change often. Let's suppose your left nav div has a height of 400px. Then:

    div.leftnav {
       height: 400px;
       float: left;
    }
    
    div.rightContent {
       min-height: 400px;
       border-left: 1px solid gray;
       float:left;
    }
    

    Keep in mind, "min-height" is not supported by IE6.

提交回复
热议问题