1

我正在尝试保留 div 内的 ul 和 li 元素,以尊重 div 的宽度与 margin-left: auto。我也不希望 ul/li 扩展到 div 之外。我希望 ul 和 li 元素留在 div 容器内。根据我的阅读,这段代码是正确的,因为我的子元素包含一个应该根据 div 宽度的宽度。

#phonequeue {
    display: block;
    width: 400px;
    height: 800px;
    border-width: 5px;
    border-color: white;
    border-style: solid;
    float: right;
    margin-top: -650px;
}

li {
    display: block;
    padding: 15px;
    text-align: left;
    height: 1.2 em
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px 0px 4px 0px;
    background-color #555
    -webkit-border-radius: 15px;
    border-radius: 40px;
    background: -webkit-gradient(linear, 0% 0%, 0% 30%, from(#444), to(#111));
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 22px;
    width: 100%;
    margin: auto;

}

ul {
    list-style-type: none;
    width: 100%;
    margin: auto;
}

索引.html:

    <div id="phonequeue"> 
    <ul>
        <li class="avail">
        <span class="pname">John Doe</span>
        <span class="ptime">03:00</span>
        </li>
    </ul>
    </div>

更新:这是一个工作示例。元素宽度为430px;当父 div 为 400px 时;。我会让子元素以 div 为中心,并让它们的宽度尊重父母的宽度。 http://jsfiddle.net/FBvQJ/4/

4

3 回答 3

2

我相信问题在于使用 width: 100%

检查这个jsFiddle并让我知道这是否回答了您的问题。

这是解决重叠宽度的更新 CSS:

phonequeue {
    display: block;
    width: 200px;
    border: 1pt solid green;
}
ul{
    border: 1pt solid red;
    list-style-type: none;
    margin: auto;
    padding: 0;
}
li {
    display: block;
    padding: 15px;
    text-align: left;
    height: 1.2em;
    margin: 0px 0px 4px 0px;
    -webkit-border-radius: 15px;
    font-size: 22px;
    margin: auto;
    border: 1pt solid #ccc;
}

我认为您不需要为每个元素定义全宽。

于 2013-10-08T20:24:53.903 回答
1

If I'm understanding your question correctly (which is dubious) I believe you can achieve the centering you require by removing the 100% widths and using text-align:center:

li {
    display: block;
    padding: 15px;
    text-align: left;
    height: 1.2 em;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px auto 4px auto;
    background-color #555;
    -webkit-border-radius: 15px;
    border-radius: 40px;
    background: -webkit-gradient(linear, 0% 0%, 0% 30%, from(#444), to(#111));
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 22px;
    text-align:center; /* < this (or not, if you don't actually want it centred after all) */
}

ul {
    list-style-type: none;
    padding:0; /* < and this */
    margin: 0;
}

Demo fiddle

And later, when you decide that you want the time on the right use

.ptime {float:right;} 

example

于 2013-10-08T20:41:50.630 回答
1

如果您希望文本在 DIV 中居中,请删除 LI 标签上的宽度并设置边距:

margin: 0px auto 4px auto;

这将使文本在 div 中居中。

于 2013-10-08T20:26:35.033 回答