gpt4 book ai didi

html - 交替 div 使图像左(偶)或右(奇)

转载 作者:搜寻专家 更新时间:2023-10-31 22:42:18 26 4
gpt4 key购买 nike

我正在尝试更好地排列图像,而不仅仅是 1 列中的图像。示例见附件,每篇文章的图片可以在左右。

enter image description here

这是我的代码。HTML:

<section class="content list_page">
<article id="post-66">
<div class="list_img"><img src="img1.png"></div>
<div class="list_text">Content 1</div>
</article>
<article id="post-63">
<div class="list_img"><img src="img2.png"></div>
<div class="list_text">Content 2</div>
</article>
.
.
.
</section >

CSS:

.list_page:nth-child(odd) .list_img{ 
float:right;
}
.list_page:nth-child(even) .list_img{
float:left;
}

我该怎么做?请帮忙。-提前致谢

最佳答案

尝试使用这个 css

.list_page article:nth-child(odd) .list_img{ 
float:right;
}
.list_page article:nth-child(even) .list_img{
float:left;
}

问题是您选择了父 div 而不是子文章

关于html - 交替 div 使图像左(偶)或右(奇),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30908987/

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