gpt4 book ai didi

html - 如何在没有移位标题的情况下将静态标题和可变文本设置到屏幕中心

转载 作者:行者123 更新时间:2023-11-27 22:55:19 24 4
gpt4 key购买 nike

我需要在屏幕中央放置下一个结构:

Static title 1: some variable text

Static title 2: some long variable text

添加可变文本不应取代结构。如何做标题的静态位置并且在添加新的可变文本期间不要移动它?此刻不对,像这样

enter image description here

<div class="container">
<div class="lds-default">
... loader
</div>
<div>
<table>
<tr>
<td>Плейлист</td>
<td id="lbl_title"></td>
<tr>
<td>Статус</td>
<td id="lbl_message"></td>
</tr>
</table>
</div>
</div>

.container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

最佳答案

请检查这是否适合您:

  .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: left;
-ms-flex-align: left;
align-items: left;
}
.container .lds-default{
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
}

另外,第一个<tr>在您的示例中未关闭。

关于html - 如何在没有移位标题的情况下将静态标题和可变文本设置到屏幕中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59284566/

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