gpt4 book ai didi

html - 在这种情况下防止换行

转载 作者:太空宇宙 更新时间:2023-11-04 05:04:38 25 4
gpt4 key购买 nike

我正在尝试防止此 Html 中的换行

http://jsfiddle.net/DD3v8/

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

谁能弄清楚发生了什么?

提前致谢

最佳答案

试试这个:

.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;
}

解释很简单:使用 float ,你不能给持有人增加宽度,它比持有人的高度大, float 会自动放下,并断线。

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

容器(position:relative)
SUBelement (position: absolute, top: 0, left: 0) < 放在左上角
SUBelement(position: absolute, bottom: 0, right: 0) < 放到右下角

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

关于html - 在这种情况下防止换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10704630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com