我正在尝试在 CodePen 中创建一个由 GIFS 组成的无限循环网站(链接:https://codepen.io/sofiazymnis/pen/yLNQWWR ?editors=1111 )。
由于某种原因,第一个 GIF 的顶部有一个边距,这破坏了无限滚动循环的无缝性。我尝试了 margin-top: 0; 但它似乎不起作用。
有任何想法吗?
html:
<html>
<head>
<style>
body {
height: 7000px; /* Used to enable scrolling */
background: linear-gradient(#86c2db 0%, #c8a096 40%, #263c63 60%, #86c2db 100%);
/*background-size: 100% 1000vh;*/
/*background-repeat:repeat-y;*/
}
::scrollbar {
display: none;
}
</style>
</head>
<body>
<img src="https://pro2-bar-s3-cdn-cf3.myportfolio.com/90c10bc74835779c958d7b88b56e6448/4272adea-61c3-4477-b8d0-a6f5ae78f511.gif?h=55dafeb4ec2ea49fe386c59f2590d02c"/>
CSS:
$blue: #a3d5d3;
body {
background-color: $blue;
}
img{
display:block;
margin:auto;
line-height: 0;
max-width:50%;
}
BIG阳
ITMISS
相关分类