gpt4 book ai didi

html - CSS 选择器 : How to reference a attribute inside a div

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

<div id ="group">
<img src= ' ' id = '1'>
<img src= ' ' id = '2'>
.......
</div>

我想引用 div id 'group' 中的所有 img,如何在 css 中标记它?还有,哪个好?将所有分配给 img/创建一个类,例如。 #img.groupItem 并每次都引用它?谢谢

源代码:

<div id="book">
<img alt="flip book" src="demo/medium/Web081112_P001_medium.jpg">
<img alt="flip book" src="demo/medium/Web081112_P002_medium.jpg">
<img alt="flip book" src="demo/medium/Web081112_P003_medium.jpg">
</div>

运行javascript后:

<div id="page" style="display: block; width: 1180px; height: 767px; left: 50%; top: 50%; margin: -413.5px auto 0px -590px; cursor: default;">
<div id="book" style="position: relative; width: 1180px; height: 767px; transform: translate3d(0px, 0px, 0px);">
<div class="turn-page-wrapper" page="1" style="position: absolute; overflow: hidden; width: 590px; height: 767px; top: 0px; right: 0px; left: auto; bottom: auto; z-index: 0; display: none;">
<div id="cover" class="turn-page p1" style="width: 590px; height: 767px;">
</div>
</div>
<div class="turn-page-wrapper" page="2" style="position: absolute; overflow: hidden; width: 590px; height: 767px; top: 0px; left: 0px; right: auto; bottom: auto; z-index: 7;">
<div style="position: absolute; top: 0px; left: 0px; overflow: hidden; z-index: auto; width: 968px; height: 968px;">
<div class="turn-page p2" style="width: 590px; height: 767px; position: absolute; top: 0px; left: 0px; bottom: auto; right: auto;">
<img alt="flip book" src="demo/medium/Web081112_P001_medium.jpg">
</div>
</div>
</div>
</div>
</div>

html 代码类似于单个 img 的代码,我使用了此处提供的答案,但仍然无法正常工作。我相信这是由生成 html 代码引起的问题?

最佳答案

CSS 旨在在 selectors 的帮助下应用全局样式.

后代选择器就是你要找的:

#group img {
// code
}

关于html - CSS 选择器 : How to reference a attribute inside a div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13758663/

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