gpt4 book ai didi

css - 文本旁边的图像填充

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:18 25 4
gpt4 key购买 nike

我正在尝试使用填充在文本的每一侧对齐两个图像。

我在左侧工作,但不在右侧工作。

为什么右边的不会掉下来10px?

html:

<img class="q1" src="http://i62.tinypic.com/2dkh7p2.png"/>
This is the quoted text, but how can I get the right img to align? Right now it's too high! --->
<img class="q2" src="http://i62.tinypic.com/282f3mr.png" />

CSS:

.q1 {
padding-right:2px;
padding-bottom:10px;
}
.q2 {
padding-left:2px;
margin-top:10px;
}

fiddle :http://jsfiddle.net/vvDdR/1/

最佳答案

不使用垂直边距或填充,你可以轻推它:

.q2 {
padding-left:2px;
position:relative;
top:10px;
}

之前:

Before

之后

After

演示:http://jsfiddle.net/5g4wt/

关于css - 文本旁边的图像填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24701524/

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