0

我在容器 div 中有一些并排的列表。容器 div 的宽度必须为 100%。

如果容器中的任何列表超过浏览器宽度,它们都应该溢出窗口。

我可以让它按需要工作的唯一方法是,如果我给我的容器一个固定的 px 宽度。

我被困住了,我相信这很简单。

请参阅:http: //jsfiddle.net/sPKEp/7/

.small-list {
background-color:#797979;
display:block;
width:640px; /* <-- This at 640px behaves correct. I need this to be 100% though */
height:81px;
max-height:81px;
margin:0px;
padding:0px;
}
ul {
display:block;
float:left;
overflow:hidden;
height:81px;
max-height:81px;
width: 100px;
list-style-type: none;
padding: 0px;
margin: 0 5px 0 5px;
background-color:#c9c9c9;
}
li {
display:block;
padding:0px;
width: 100px;
height: 25px;
background-color:#2b2b2b;
border:1px solid #fff;
line-height:1em;
}
4

3 回答 3

2

添加white-space: nowrap到您的 .small-list 并将您的float: leftul 更改为display: inline-block's

http://jsfiddle.net/sPKEp/30/

但看起来你真正想要的是一个<table>.

于 2012-11-29T07:43:51.383 回答
0

像这样对你的css进行一些更改

.small-list {
background-color:#797979;
display:block;
width:640px; /* <-- This at 640px behaves correct. I need this to be 100% though */
height:81px; // remove this line
max-height:81px; // remove this line
margin:0px;
padding:0px;
overflow:hidden; // add this line
}
ul {
display:block; // remove this line
float:left;
overflow:hidden;  // remove this line
height:81px;
max-height:81px;
width: 100px;
list-style-type: none;
padding: 0px;
margin: 0 5px 0 5px;
background-color:#c9c9c9;
}
li {
display:block;
padding:0px;
width: 100px;  // remove this line
height: 25px;
background-color:#2b2b2b;
border:1px solid #fff;
line-height:1em;
}

现场演示

于 2012-11-29T07:38:36.877 回答
0

您可以为 .small-list div 尝试此操作,但这取决于您希望如何隐藏列表。

.small-list {
  background-color:#797979;
  display:block;
  width:100%;
  height:81px;
  max-height:81px;
  margin:0px;
  padding:0px;
  overflow: hidden;
}
于 2012-11-29T07:39:45.150 回答