我試圖把一個僞元素作爲背景圖像,只是在文檔的寬度裁剪。但是,當我將背景圖像放入其中時,會不斷擴大文檔的寬度,使其他div變得非常寬泛。如何阻止僞元素改變其他元素的寬度?
具體來說,您可以從截圖中看到,nav正在擴展其寬度以適應僞元素的背景圖像。
我見過它做,但我不同的是沒有什麼,因爲在實際的僞元素的代碼是一樣的。舉個例子:
HTML:
<nav class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container nav-down">
<div class="navbar-header page-scroll">
<a class="navbar-brand" href="/"><img src="/static/ScoopsLogo.png" alt="${out.global.siteName} Logo"></a>
<p class="navbar-blog"><a href="https://blog.scoops.io/">Blog</a></p>
</div>
</div>
<div id="scroll-progress">
<div id="scroll-progress-bar"></div>
</div>
</nav>
<section id="home">
<div class="home-1">
<div class="home1-1">
<h1>Sound smart at the dinner table</h1>
<h5>Learning made easy & fun</h5>
</div>
</div>
<div class="home-lessons fade-in-up-static delay-2">
<!-- List of Lessons -->
<h5 class="text-center">NEW SCOOPS</h5>
<div class="lessons-list">
</div>
</div>
</section>
CSS:
.navbar {
min-height: 50px;
margin-bottom: 20px;
}
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.container {
max-width: 600px;
}
.navbar-custom {
.navbar-header {
width: inherit;
max-width: inherit;
}
.navbar-brand {
img {
width: auto;
height: 100%;
}
}
.navbar-blog {
float: right;
padding: 10px;
margin: 3px 10px 0 0;
}
}
.home-lessons {
width: 100%;
padding: 3%;
@media (min-width: $screen-md-min) {
margin-bottom: 20px;
padding: 20px 40px;
}
h5 {
margin-top: -100px;
}
&::before {
content: '';
background-image: url(/static/Scoops-Icons.png);
background-size: cover;
width: 500px;
height: 500px;
display: block;
position: absolute;
margin-left: 200px;
margin-top: -200px;
}
}
謝謝Frits。爲了澄清我自己和其他人,爲什麼使用html/body作爲overflow-x:hidden;的CSS選擇器的快速修復和矯枉過正,爲什麼它應該是那些選擇器而不是簡單的僞元素的父對象呢? – Chris
Hi @Chris。這是過度殺傷,因爲如果你的身體有'overflow-x:hidden';'它應該永遠不會超過'html',除非你專門有一個水平排列的網站 - 這有幫助嗎?至於你的第二個問題,最好在父元素上使用'overflow-x:hidden',但只有當你的父元素不小於你試圖用你的僞元素訪問的區域時。通常,僞元素上的樣式是以這樣的方式完成的:故意突出父元素,但仍需要確認文檔大小。這有幫助嗎? :) – Frits
@Chris - 不要忘記看看[你的賞金問題](https://stackoverflow.com/a/44457687/6049581) - 問題似乎一樣,但隨時讓我知道如果我遺漏了任何東西:) – Frits