html - Make text avoid a div, layout question -


is a picture

So this is a photo of a website I host for a nonprofit organization is .

The picture is in a div that has the following characteristics:

Status: Completed; Correct: 50px; Top: 50px;

What I have to do, make the text more visible because the picture will be different at different resolutions, so I either:

- create the text

- Or to avoid writing the Div (if possible)

So, do you have any ideas? Thank you :)

First of all, it is not possible to flip the text around a perfectly positioned div, because It is pulled out of the normal flow; See

What you can do to use the following features:

  float: right; Margin-right: 50px;  

And then I keep it in the right place to get it, which you are trying to do should get it. If you put it as the first element, you can also add,

  margin-top: 50px;  

Hope that helps.


Comments