gpt4 book ai didi

html - 内联 block 元素上的 CSS 文本对齐

转载 作者:太空狗 更新时间:2023-10-29 14:15:25 25 4
gpt4 key购买 nike

我有这样的结构:

<div class="father">
This string is left-aligned
<div class="divToCenter" style="display:inline-block;">
//contains other divs.I used inline block for making this div as large as
//content ATTENTION: its width is not fixed!
</div>

</div>

我怎么能说:

让我只有名为“divToCenter”的类以“父”div 为中心。

谢谢

卢卡

最佳答案

#left {
float: left;
background: #eee;
width: 200px; /* width is optional */
}
#content {
overflow: hidden;
text-align: center;
}
    <div class="father">
<div id="left">This string is left-aligned</div>
<div id="content">
<!-- contains other divs.I used inline block for making this div as large as content -->
</div>
</div>

将左对齐的字符串或 block 向左浮动,然后在内容上加上overflow:hidden,它会自动占用剩余的空间,你可以text-align随心所欲。

或者将左侧内容也转换为内联 block ,这样它和内容并排在一起,您将能够text-align每个inline-block分别。

关于html - 内联 block 元素上的 CSS 文本对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6070321/

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