gpt4 book ai didi

css - 使除第一张图像以外的其余图像变小

转载 作者:太空宇宙 更新时间:2023-11-04 04:09:58 27 4
gpt4 key购买 nike

尝试使用 css 更改其余图像的宽度。

fiddle1

我想实现的是:

fiddle2

CSS

.left{
margin-bottom: 18px;
margin-left: 1px;
width: 246px;
}

.wrapper div:first-of-type{
width: 513px;
}


.left p{
color: #555555;
font-size: .8em;
height: 32px;
background-color: #F6F6F6;
line-height: 32px;
padding-left: 8px;
}

尝试了一些东西但无法达到我需要的结果。

最佳答案

指定所有图像的宽度,然后显式定义第一张图像。例如:

.wrapper div img {
width: 246px;
}
.wrapper div:first-child {
width: 513px;
}
.wrapper div:first-child img {
width: 513px;
}

jsFiddle Demo

关于css - 使除第一张图像以外的其余图像变小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20827283/

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