This works for me.
fieldset
{
max-width : 1em;
width: 1em;
border:1px solid #000000;
}
li
{
max-width:1em;
width:1em;
word-wrap:break-word;
}
Either do not use inherit on li or do a inherit on both its parent div and ul
fieldset
{
max-width : 1em;
width: 1em;
border:1px solid #000000;
}
fieldset > div{
width:inherit;
}
fieldset > div > ul{
width:inherit;
}
li
{
max-width:inherit;
width:inherit;
word-wrap:break-word;
}
Post a Comment for "How Can I Word Wrap This List Item In Firefox 11?"