gpt4 book ai didi

html - 如何在不破坏 CSS 对齐的情况下修复文本换行?

转载 作者:行者123 更新时间:2023-11-28 10:26:50 24 4
gpt4 key购买 nike

我有下面的 html 和 css 来根据屏幕截图显示一些数据。如果我添加 white-space: nowrap; 然后文本移出框(第一个屏幕截图)。如果我不使用,那么它会换行但会扰乱框对齐(屏幕截图中的第 2 行)。

我可以设置任何属性来解决这个问题而不增加框的宽度吗?我也尝试过显示属性,但到目前为止没有成功。

<html>      
<head>
<meta charset="UTF-8"/>
<style>
.sideBarList li {
width: 12%;
height: 50px;
text-align: center;
line-height: -10px;
border-radius: 10px;
background: skyblue;
margin: 0 10px;
white-space: nowrap;
display: inline-block;
color: black;
position: relative;
text-align: center;
font-family: Arial;
font-size: 11px;
}

.sideBarList li::before{
content: '';
position: absolute;
top: 25px;
left: -8em;
width: 8em;
height: .2em;
background: skyblue;
z-index: -1;
}

</style>

</head>
<body>

<ul class="sideBarList">
<li class="li">Hi There</li>
<li class="li">Hi There</li>
<li class="li"> ABC DEF GHI TYTYT YTYYT IIIOO</li>
</ul>
</body>
</html>

最佳答案

您正在使用 inline-block,您需要使用 vertical-align:top 来保持对齐,因为默认对齐方式是 baseline

.sideBarList li {
width: 12%;
height: 50px;
text-align: center;
line-height: -10px;
border-radius: 10px;
background: skyblue;
margin: 0 10px;
display: inline-block;
vertical-align: top;
color: black;
position: relative;
text-align: center;
font-family: Arial;
font-size: 11px;
}

.sideBarList li::before {
content: '';
position: absolute;
top: 25px;
left: -8em;
width: 8em;
height: .2em;
background: skyblue;
z-index: -1;
}
<ul class="sideBarList">
<li class="li">Hi There</li>
<li class="li">Hi There</li>
<li class="li"> ABC DEF GHI TYTYT YTYYT IIIOO</li>
</ul>

关于html - 如何在不破坏 CSS 对齐的情况下修复文本换行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50833609/

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