gpt4 book ai didi

html - 为图像创建 div 类

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

我有一个代码可以在我的网站页脚中插入图片。当我从 css 裁剪这些图片时,网站上的所有图片都会被裁剪。如果现在有帮助,我该如何解决这个问题并插入一个 div 类?

*{box-sizing: bortder-box}  /*lang-css*/

figure{
text-align: center;
width: 100%;
}
img{margin: 0 10px; border-top: 2px solid red; border-bottom: 4px solid green}
img:first-child{width: 70px; height: 40px}
img:nth-child(2){width: 80px; height: 42px}
img:nth-child(3){width: 90px; height: 44px}
img:nth-child(4){width: 100px; height: 46px}
img:last-child{width: 120px; height: 48px}

<figure> <!--lang-html-->
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
</figure>

最佳答案

更具体地说,您可以将 id 或 class 添加到 figure 元素并更新样式,如下所示。向图中添加页脚图像的 id。

<figure id="footer-images">
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
<img src=https://pbs.twimg.com/media/B3bbgs9CMAA5Cwi.jpg />
</figure>

#footer-images {text-align: center;width: 100%;}
#footer-images img{margin: 0 10px; border-top: 2px solid red; border-bottom: 4px solid green}
#footer-images img:first-child{width: 70px; height: 40px}
#footer-images img:nth-child(2){width: 80px; height: 42px}
#footer-images img:nth-child(3){width: 90px; height: 44px}
#footer-images img:nth-child(4){width: 100px; height: 46px}
#footer-images img:last-child{width: 120px; height: 48px}

关于html - 为图像创建 div 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27970167/

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