我遇到了一些与CSS相关的问题,因为您可以看到标题上的广告 你向下滚动广告不在中间,看起来很奇怪。
请注意,此网站具有响应能力,适用于所有屏幕 我现在所拥有的解决方案只适用于移动设备,但不适用于PC。
我希望你能帮助我把它放在中心位置。
链接以查看问题:My Website
答案 0 :(得分:0)
在center
middle
className{
margin: 35px auto 10px;
min-height: 100px;
display: inline-block;
position: absolute;
left: 50%;
transform: translatex(-50%);
}
答案 1 :(得分:0)
.your_ad {
position:absolute;
left:50%;
margin-left:-half of your ad_width;
}
.your_header {position:relative;}