Question : Is there a way to wrap text in a floated div displayed inline

css..
1:
2:
3:
4:
5:
6:
7:
8:
.box {
	width:140px;
	min-height:120px;
	background-image:url('images/box.gif');
	background-repeat:no-repeat;
	float:left;
	display:inline;
	padding:15px;


Displays boxes inline as desired, but text runs beyond the 140 width of the box.  Tried the overflow tag, but it did not seem to be what I'm looking for.

Image of how it displays attached...
Attachments:
 
display problem, text not wrapping as desired.
display problem, text not wrapping as desired.
 

Answer : Is there a way to wrap text in a floated div displayed inline

>> <cfif IsDefined("article_id") and neq "not_present">

The second condition isn't defined properly, it should be more like

         <cfif IsDefined("article_id") and article_id neq "not_present">

>> I need something that accounts for it either being completely absent OR  
>> being defined as  being  blank

   What do you mean by "blank"?  Do you mean the value of "article_id" is
   literally the string "not_present"

   ie    <cfset article_id = "not_present">

   ... or that it's value is an empty string

   ie    <cfset article_id = "">
Random Solutions  
 
programming4us programming4us