I have an iframe and with it a body and a div
<iframe name="myiframe">
<html><head></head>
<body>
<div style="width: 100%;">This is my test text</div>
</body>
</html>
</iframe>
The iframe has specific width. Let's say 100px. And the div get the 100% of it. The problem is that the text I have in the div is not all visible. I can see only what fits to 100px and the rest is hidden, while I want it to split into two lines in case is not fit.
Does anyone know how I can do that?
Thanks in advance