0

我试图防止在这个 Html 中换行

http://jsfiddle.net/DD3v8/

碰巧当我调整窗口大小时,图标和文本都会换行。我已经尝试过使用空白 CSS 属性。我也尝试过,一种表格方法,但行为是一样的

谁能弄清楚发生了什么?

提前致谢

4

2 回答 2

1

试试这个:

.line {
            height: 44px; 
            width: 100%; 
            display: inline-block; 
            background-color: #6c7987;
            white-space: nowrap;
            position: relative;
        }

        .icon {
            position: absolute;
            left: 0;
            height: 44px; 
            width: 90px; 
            background-color: 
            #FF0080; 
            color: white;
            text-align: center;
            line-height: 44px;
            font-family: Arial;
            float: left;
            font-size: 12px;
            font-weight: bold;
            padding: 0;
        }

        .title {
            position: absolute;
            left: 90px;
            color: white;
            line-height: 44px;
            text-align: left;
            padding: 0 0 0 10px;
            font-family: Arial;
            float: left;
            font-size: 12px;
            display: inline;
            white-space:nowrap;
        }

        .botoes {

            position: absolute;
            width: 300px;
            right: 0
        }

        .botao {
            width: 46px;
            height: 45px;
            float: right;
            line-height: 44px;
            text-align: center;
            display: block;
            white-space:nowrap;
            cursor: pointer;
        }

        .botaoVerRecurso {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoVerRecurso:hover {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoEditarRecurso {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoEditarRecurso:hover {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoFavRecurso {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoFavRecurso:hover {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoPartRecurso {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoPartRecurso:hover {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoApagarRecurso {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .botaoApagarRecurso:hover {
            background: url('http://www.think-cell.com/images/cross.png') center no-repeat;
        }

        .clear {
            clear: both;
        }

​</p>

解释很简单:用浮动,你不能给一个持有人更多的宽度,超过持有人的高度,浮动会自动下降它,并断线。

如果您使用位置,请像这样使用它:

CONTAINER(位置:相对)
子元素(位置:绝对,顶部:0,左侧:0)<放在左上角
子元素(位置:绝对,底部:0,右:0)<放在右下角

在 W3C:http ://www.w3schools.com/css/css_positioning.asp

于 2012-05-22T15:08:20.390 回答
1

如果我正确理解您的问题,您需要能够在没有文本和“x”图标跳下的情况下调整窗口宽度,是这样的:

移除 CSS.title

min-width: 500px;

请参阅此小提琴示例

于 2012-05-22T15:15:46.530 回答