I have a very simple site with a textarea on the left, and some text on the right. However if the user resizes the textarea, it clips over the text. How do I define a minimum distance that the text must stay from the textarea? Currently I simply have:
.text {
position: absolute;
left: 400px;
top: 60px;
margin-right: 50px;
}