Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

scroll to see pre tags content

I have a pre tag inside a wrapper div. I have a bunch of text content inside the pre tag. What I want is once the pre tags height is taller than the wrapper I want to scroll to see the hidden text content inside the pre tag. How can I achieve this? Thanks in advance.

.wrapper {
  position: relative;
  width: 50vw;
  height: 90vh;
  overflow-y: auto;
  background-color: salmon;
}

.wrapper pre {
  display: flex;
  position: absolute;
  bottom: 0%;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  color: #ffffff;
  background-color: sandybrown;
}
<div class="wrapper">
  <pre>
    blah
    blah
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
  </pre>
</div>

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Will this work for you?

.wrapper {
  position: relative;
  width: 50vw;
  height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: salmon;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wrapper pre {
  padding: 10px;
  color: #ffffff;
  overflow: auto;
  background-color: sandybrown;
}
<div class="wrapper">
  <pre>
    blah
    blah
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
    check 
    test 
    check 
    test
  </pre>
</div>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading