I have been tiring to put some text into border that I did.
div {
background-color: lightgrey;
width: 200px;
border: 15px solid crimson;
padding: 50px;
margin: 20px;
}
<div>
<pre>
Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text.
</div>
</pre>
Now I have a lot of text that i want to put inside the border. I'm using pre tag and it looks like this:
I'm trying to understand how to put the text inside the border, but everything that I have tried doesn't work. What can I do to fix it?