我制作了一个顶部横幅,该横幅在网页上以全角显示,但是当我尝试在移动视图中查看时,顶部横幅被尖叫了一定比例。
编写的html代码如下:
<style>
.top-banner {
width: 100%;
display: block;
text-align: center;
background: #fee768;
color: #555;
font-size: 16px;
padding: 10px 7px;
font-weight: 600;
}
.top-banner:hover {
text-decoration: none;
background: #ffc71f;
color: #846934;
}
</style>
<div>
<a href="https://www.youtube.com/...." target="_blank" class="top-banner">
Need help? Watch this Video
</a>
</div>
这在网页上可以正常工作,但是当我在移动设备上查看同一页面时,顶部横幅无法全角显示。
我尝试将position: fixed !important;
添加到.top-banner
css类中,使用此宽度固定,但页面底部的内容向上移动,即网页底部的内容超过顶部横幅
请建议我一些解决此问题的方法。
答案 0 :(得分:0)
如果您不希望其他元素出现在顶部横幅上方,则可以使用
.top-banner {
z-index:1000
}
z-index的值越高,该元素出现在其他元素顶部的次数就越多。
答案 1 :(得分:0)
我认为原因是因为“填充:10px 7px;”在元素的左侧和右侧增加7px的空间。
要解决:
替换
padding: 10px 7px;
与此
padding: 10px 0;
答案 2 :(得分:0)
您是否尝试过删除移动设备上的填充和边距? 要么 应用以下样式:
.parent-div{
display:flex;
height:320px;
width:100%;
}
.top-banner {
width:100%;
height:100%;
padding:0px;
margin:auto;
}
答案 3 :(得分:0)
尝试在您的代码上添加重要内容
.top-banner{
width:100%!important;
}
它将强制宽度为100%