HTML和CSS:将块元素浮动到另一个块元素中?

时间:2012-09-27 02:48:13

标签: css html web css-float

是否可以在<ul>内隐藏<div>?如果是这样,怎么样?

2 个答案:

答案 0 :(得分:3)

这就是你想要的:

div > ul
{
    float: left;
}

答案 1 :(得分:1)

[YES]

CSS:

<style type="text/css">
  div.my-div {
    width: 200px;
    height: 200px;
  }
  div.my-div ul.left-floated {
    width: 100px;
    height: 200px;
    float: left;
    /* display: block; */
  }
  div.my-div ul.right-floated {
    width: 100px;
    height: 200px;
    float: right;
    /* display: block; */
  }
  .clearfix {
    clear: both;
    line-height: 0;
    font-size: 0;
    height: 0;
  }
</style>

HTML:

<div class="my-div">
  <ul class="left-floated">
  </ul>

  <ul class="right-floated">
  </ul>

  <br class="clearfix" />
</div>