作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对此很陌生。在我的网站上,我一直在尝试修复它的移动版本。
https://glacieradventure.is/tour/vatnajokull-glacier-walk/
如果您在 PC 上查看此页面,您会在右侧看到预订小部件,但当您将其切换到移动设备 View 时,预订小部件会转到底部。我想要 <h2>
下的预订小部件.
我通过移动 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/
我是一名优秀的程序员,十分优秀!