vote up 0 vote down star

I am building new site FF and IE compliant...what is best way to have sentences wrap to fill container in firefox? This works in IE without any problem.

Currently I am using the following doctype <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

thanks

flag

10% accept rate
Set a width ? Do you have any screenshots or links ? – alex Mar 3 at 3:46
Don't they do this by default? – Diodeus Mar 3 at 3:54
Can you please be more specific when you say "sentences wrap to fill container?" Every browser I know of already does word wrap if that's what you mean... – freelookenstein Mar 3 at 3:55
What type of element is the 'container'? Could you provide a small code sample of it and the sentence within? – thomasrutter Mar 3 at 5:27
I have code like this <table><tr><td> <div class="articleContent" > <asp:Literal ID="litArticle" runat="server" /> </div> </td></tr></table> When from code behind, I add litArticle.Text = "this is a long sentence that goes on and on. This is a long sentence that goes on and on. " – David Mar 3 at 15:17
show 3 more comments

3 Answers

vote up 0 vote down

Try adding the following to your CSS

#container {overflow: auto;}

Or

#container {overflow: hidden;}
link|flag
vote up 0 vote down

Tried a test case:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style>
.articleContent { width:200px;
}
</style>
</head>
<body>
<table><tr><td> <div class="articleContent" > this is a sentence that goes on and on. this is a sentence that goes on and on. this is a sentence that goes on and on. this is a sentence that goes on and on. this is a sentence that goes on and on. </div> </td></tr></table>
</body>
</html>

Renders fine in FF/konq. Sounds like your CSS is getting overridden somewhere.

link|flag
vote up 0 vote down

You may mean something along the lines

div.mydiv {
    width: 400px;
    height: auto;
    text-align: justify;
    overflow: hidden;
}

I don't think there is anything controlling breaks between words: they always occur as necessary.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.