In my HTML5 Page there are two things
- Div [strictly fixed to screen]
- Outer Text [lengthy to that much extent that we get scroll bar in browser]
Problem facing:outer text going back div. Question:How to make outer text align well around fixed div without hiding back.
div
tag is attributed to float left
so that text will cover the div.
My requirement is Div should always appear on screen and re-sizable so used CSS and jqueryUI on Div tag to fixed,adjustable
but unfortunately outer text is going behind div tag which will not happen when we use position:relative
to div.Is there any way to make div fixed to screen and outer text wrap the div safely without hiding.