I have a site that needs to use a DOCTYPE of of HTML 4.0 Transitional as it contains lots of user generated content that does not display properly in XHTML 1.0 Transitional.
I have a vertical menu to which I have added style="white-space:normal" so that items within it wrap. This all works fine in Chrome, Firefox and Safari but in IE8 the menu items do not wrap.
Any ideas how I can fix this?
Below is an aspx page that demonstrates this
Thanks,
Paul Cripps
I have a vertical menu to which I have added style="white-space:normal" so that items within it wrap. This all works fine in Chrome, Firefox and Safari but in IE8 the menu items do not wrap.
Any ideas how I can fix this?
Below is an aspx page that demonstrates this
<%@ Page Language="C#" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<
html
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
Runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadMenu
ID
=
"RadMenu1"
Runat
=
"server"
Flow
=
"Vertical"
Width
=
"100px"
>
<
Items
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"This is the first very long menu item"
style
=
"white-space:normal"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"This is the second very long menu item"
style
=
"white-space:normal"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
runat
=
"server"
Text
=
"This is the third very long menu item"
style
=
"white-space:normal"
></
telerik:RadMenuItem
>
</
Items
>
</
telerik:RadMenu
>
</
div
>
</
form
>
</
body
>
</
html
>
Thanks,
Paul Cripps