gpt4 book ai didi

html - 将 div 大小设置为标题 div 的百分比

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

我想在我的 wordpress 网站上的标题 div 中创建一个 div。我希望新 div 的大小是父 div 的 %,只占据标题的最右侧。当前页眉左侧有一个我的 Logo 。最终我想要完成的是用文本填充右侧。我尝试使用“em”和/或“vw”来填充和调整字体大小,但效果不太好(我猜是因为它基于整个标题大小,这使得对齐变得困难)。

当前显示: enter image description here

期望的结果: enter image description here

最佳答案

为了创建您想要的结果,您可以使用 css 将标题内的第一个 div float 到左侧,将第二个 div float 到右侧。这是一个例子:

#div-with-logo {
float:left;
width:50%;
}

#div-with-text {
float:right;
width:50%;
}

这里有一些关于使用 css 定位 div 的更多信息 http://www.barelyfitz.com/screencast/html-training/css/positioning/

关于html - 将 div 大小设置为标题 div 的百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27348268/

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