gpt4 book ai didi

html - 白皮书 : How to center two images (they change by hover effect)?

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

我显示一个图像,如果鼠标悬停在它上面(悬停),该图像会随着另一个图像而变化。这非常有效,但图像不居中。这是我使用的代码:

HTML:

<figure><a><img class="hover" src="nachher.jpg" alt="" width="60%" />
<img class="nohover" src="vorher.jpg" alt="" width="60%/" /></a>
<figcaption>some text here</figcaption></figure

CSS:

img.nohover {border:0;} 
img.hover {border:0;display:none;}
a:hover img.hover {display:inline;}
a:hover img.nohover {display:none;}

问题是:如何让图像居中?

最佳答案

我会将 width: 60% 移动到 figure,然后使图像 width: 100%。然后你可以

img.nohover {border:0;} 
img.hover {border:0;display:none;}
a:hover img.hover {display:inline;}
a:hover img.nohover {display:none;}
figure {
width: 60%;
margin: auto;
}
img {
width: 100%;
}
<figure>
<a><img class="hover" src="/image/2C22p.jpg" alt="" />
<img class="nohover" src="http://kenwheeler.github.io/slick/img/fonz1.png" alt="" /></a>
<figcaption>some text here</figcaption>
</figure>

figure 上使用 margin: auto 使其水平居中。

关于html - 白皮书 : How to center two images (they change by hover effect)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45639756/

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