我們正在嘗試向我們的網(wǎng)站添加視差背景,但圖像周圍有令人討厭的白色邊框(https://i.stack.imgur.com/pt0Pf.jpg)。我們已經(jīng)嘗試了一切,但不知道該怎么辦。我們找不到 CSS 或 HTML 的問題。我們認(rèn)為這是利潤率的問題,但沒有任何因素會影響它。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>
2 回答

慕碼人8056858
TA貢獻1803條經(jīng)驗 獲得超6個贊
- 2 回答
- 0 關(guān)注
- 130 瀏覽
添加回答
舉報
0/150
提交
取消