gpt4 book ai didi

css - 在 div 中拉近文本

转载 作者:太空宇宙 更新时间:2023-11-04 00:26:08 26 4
gpt4 key购买 nike

我在 wordpress 中编写了一个循环,循环遍历帖子标题,然后在页面顶部的特殊最新新闻部分中显示前 6 个。问题是我无法将标题拉近,如您在图 1 中所见。我希望这些标题显示为图 2 中所示。

Image 1 Image 2

这是我的 HTML 和 PHP 代码:

<div id="freshlyWrapper">
<div id="freshlyposts">
<?php
$freshlyIonised = new WP_Query();
$freshlyIonised->query('category_name=featured&showposts=6');
while($freshlyIonised->have_posts()):
$freshlyIonised->the_post();
?>
<div class="freshlyionisedbox"><h3><?php the_title(); ?></h3></div>
<?php endwhile; ?>

这是 CSS:

#freshlyWrapper {
width: 980px;
text-align: left;
background: #ffffff;
float: left;
}

#freshlyposts {
width: 980px;
margin: 0 auto;
text-align: left;
height: 100px;
color: #000000;
}

.freshlyionisedbox {
position: relative;
float: left;
height: 25px;
margin-left: 140px;
padding: 0px;
top: 3px;
}

#freshlyposts h3 {
width: auto;
font-weight: normal;
letter-spacing: normal;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 13px;
}

.clearboth { clear: both; }

最佳答案

.freshlyionisedbox {
position: relative;
float:left;
height: 25px;
margin-left: 40px;
/*-- try it --*/
padding:0px;
top: 3px;
}

关于css - 在 div 中拉近文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6733332/

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