我们正在尝试向我们的网站添加视差背景,但图像周围有令人讨厌的白色边框(https://i.stack.imgur.com/pt0Pf.jpg)。
我们已经尝试了一切,但不知道该怎么办。我们找不到 CSS 或 HTML 的问题。我们认为这是利润率的问题,但没有任何因素会影响它。
HTML:
<!DOCTYPE html>
<html>
<head>
<link href="css/style.css" rel="stylesheet"><!-- <link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet"> -->
<link href='https://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<title>
</title>
</head>
<body>
<div class="sidenav" id="sideNav">
</div>
<section class="background headpage">
<div class="container">
<h1>T K S - F O U N D A T I O N S</h1>
</div>
</section>
<div onclick="openNav()" style="font-size:30px;cursor:pointer">
<h2>☰</h2>
</div>
<script>
function openNav() {
document.getElementById("sideNav").style.width = "250px";
}
function closeNav() {
document.getElementById("sideNav").style.width = "0";
}
</script>
</body>
</html>
慕码人8056858
芜湖不芜
相关分类