1

是否可以在 a 中浮动<ul>a <div>?如果是这样,怎么做?

4

2 回答 2

3

这是你想要的吗:

div > ul
{
    float: left;
}
于 2012-09-27T02:49:41.380 回答
1

[是的]

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>
于 2012-09-27T04:30:04.540 回答