[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;
  height: 2000px;
}

.scroll-left {
  position: fixed;
  right: 0;
  top: 0;
  height: 83px;
}
<div class="container">
  <div class="scroll-left" id="page">
    <p>This is made by an organization </p>
    <br />
    <strong>DO NOT COPY!</strong>
    <br />
    <hr />
  </div>
</div>

Note that I put a height of 2000px for the purpose of the example, so we can scroll 🙂

I hope this helped.

solved How do I make my

stay in one position while I move the page around [duplicate]