Text wrapping around a positioned floated id

admin

Administrator
Staff member
I am trying to wrap text around a div id that is holding a picture. The text just goes underneath the image though. Any ideas? Thank you, Scuba.

#pictureHolder {
float: right;
position: absolute;
height: 200px;
width: 150px;
top: 108px;
left: 651px;
background-color: #ffbb22;
background:url("SimontacchiF2.jpg")
}I'm no CSS expert, but doesn't absolute positioning render the float command null?Duh...what was I thinking. Thank you, taking that out and nesting it into another div worked perfect. I deserve to be thwacked. Thanks.You're welcome. No thwacking. It leaves marks.
 
Back
Top