gpt4 book ai didi

html - 背景图片背后的谷歌翻译下拉菜单

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

我正在使用 Google 网站翻译器,但当我将页面翻译成另一种语言时,浏览器顶部会出现一个下拉菜单,导致我网站上的所有内容都显示出来,除了背景图片。

我的网站是http://www.trialwebsite.comze.com/Index.html

大家可以查看一下,可以查看我的源码就知道问题所在了。 body 和背景照片的代码是:

body {
margin: 0;
padding: 0;
color: #555;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
line-height: 20px;
background-color: #fff;
background-image: url(images/templatemo_header.png);
background-position: top;
background-position:inherit;
background-repeat: repeat-x
}

最佳答案

你可以将背景移动到 body 之外,这样它就变成了一个可以移动的 DOM 元素。

将这个插入到您的 <body> 下方标签:

<div class="background"></div>

然后将其添加到您的样式表中:

 .background {
background-image: url(images/templatemo_header.png);
height: 188px;
position: absolute;
width: 100%;
}

编辑:并从主体 css 规则中删除背景属性。

关于html - 背景图片背后的谷歌翻译下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32638545/

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