To mrtsherman, if I used overflow it will look like an example I made below (tested in Firefox). I apologize for the confusion but the ultimate goal is to detect that the browser’s current text is too large for the divider tag, display a link to the detailed page and cut off all of the text that would typically overflow. I know I am making this a little complex but I would like for any reader to easily read the content. If you would go to tools > Options > content tab - fonts and colors - size: 28 in Firefox you will see big words in a hard to read overview of what the sentence/paragraph is trying to tell you. Simply put I am trying to make it easier to read the overview for reader who has truble seeing. Thank you for your input.
CSS:
.first_div
{
border: 2px dotted grey;
width: 415px;
height: 200px;
padding: 10px 10px 10px 10px;
overflow: auto;
}
.second_div
{
margin: -13px 0px 0px 205px;
padding: 10px 10px 10px 10px;
width: 200px;
height: inherit;
position: absolute;
overflow: auto;
border-left: 2px dotted grey;
}
#picture
{
background-color: green;
width: 200px;
height: inherit;
color: white;
}
h3
{
font-weight: bold;
color: black;
}
Body
<h3>Overflow Example:</h3>
<div class = "first_div">
<div class = "second_div">
<p>
This div text will be inside. This div text will be inside. This div text will be inside. This div text will be inside. This div text will be inside. This div text will be inside. This div text will be inside. This div text will be inside. This div text will be inside.
</p>
</div>
<div id = "picture">THIS IS A PICTURE</div>
</div>