[Solved] How do I make my stay in one position while I move the page around [duplicate]
Using the marquee tag is not standard. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee Also I would avoid to wrap a div with a p tag as it’s semantically not correct and are supposed to contain only inline elements. I would separate the styling from the div tag. and do something like this: https://jsfiddle.net/Mehdikit/bs9shwt0/ HTML & CSS .container { position: relative; … Read more