gpt4 book ai didi

html - CSS child/nth child/typeof 选择器

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

我不知道如何在 CSS 中选择元素。

<div class="text">
<img src="./img1.jpg">
<p>Lorem</p>
</div>
<br>
<div class="text">
<img src="./img2.jpg">
<p>Lorem</p>
</div>


如何选择文本 div 中的每隔一个图像?我想让第一个向左浮动,第二个向右浮动。无论我尝试什么,它们都向左浮动。正如我所理解的奇数选择器,只需选择它们两个。

img:nth-of-type(even){
float: right;
}
img:nth-of-type(odd){
float: left;
}

我的目标是:enter image description here

最佳答案

首先,id是唯一标识符,每页只能使用一次。你最好改成class .和 <br>在此示例中不需要标记,您可以使用 css 设置任何边距的样式:

<div class="text">
<img src="./img1.jpg">
<p>Lorem</p>
</div>
<div class="text">
<img src="./img2.jpg">
<p>Lorem</p>
</div>

然后,每个奇数 block 和偶数 block 内的图像可以设置为:

.text:nth-child(even) > img {
float: left;
}
.text:nth-child(odd) > img {
float: right;
}

关于html - CSS child/nth child/typeof 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46866518/

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