gpt4 book ai didi

html - 如何用CSS移动小部件?

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

我对此很陌生。在我的网站上,我一直在尝试修复它的移动版本。

https://glacieradventure.is/tour/vatnajokull-glacier-walk/

如果您在 PC 上查看此页面,您会在右侧看到预订小部件,但当您将其切换到移动设备 View 时,预订小部件会转到底部。我想要 <h2> 下的预订小部件.

Like this我通过移动 html 代码做到了这一点,但它不适用于 css,当我切换回 PC View 时它看起来不对。

请帮助一个女孩!

最佳答案

h2标签之后,创建一个div元素

<div class="responsive-only">{Copy and past the booking widget code here}</div> 

//注意:所以预订小部件代码出现在两个地方。

<style>
.responsive-only {display: none;}
@media (max-width: 991px) {
.responsive-only {display: block;}
// Note: Then hide the another one widget (which appears in the bottom)
}
</style>

希望对您有所帮助。

关于html - 如何用CSS移动小部件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54943910/

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