How to limit text size (HTML)?

Ok, I have managed to get my text to start in a certain position, but if I type without spacing letters out it goes past the area I want it too. How do I limit the pixels it goes to?

Here's the code I have for it so far:


<style>
.image {position: absolute;
margin: 163;
background-image: url(images/text_area.gif)}
</style>
</head>

<Code not needed>

<div class="image">
Bla bla bla...
</div>


As you can see the text is coded to start in right position but it will go too far over, how can I stop that?
Would that go in the head or body section?
 
Back
Top