JSFiddle - React, Tailwind, and code Playground

by Noreh AD

HTML

<DIV id="largephotohold">
  <img src="http://i.imgur.com/AUn1uj6.jpg">
</DIV>

CSS

#largephotohold {
  border: 0px black solid;
  position: fixed;
  bottom: 2%;
  width: 90%;
  margin-left: 5%;
  background-color: white;
  text-align: center;
  border: 3px solid red;
  max-height: 400px;
  overflow: auto; /* or hidden */
}

#largephotohold IMG {
  width: 100%;
}