JSFiddle - React, Tailwind, and code Playground

HTML

<div id="theWwrap">
			<div id="wrap">
                <span class="msg"><b>Nickname: </b>Text</span><br>
                <span class="msg"><b>Nickname: </b>Text</span><br>
             </div>
			<form id="theInput">
				<input size="35" id="message">
				<input type="submit">
			</form>
		</div>

CSS

#wrap {   
    height: 200px;
    position: relative;
} 
.msg { 
  bottom: 0;
  position: absolute;
}