Quote:
was looking at the "Inspect Element" feature in Chrome and discovered that there is a command being added somewhere along the process: white-space: no-wrap.
|
That sounds like ItemWrap was off, rather that on?
I am not exactly sure what happened. A lot of the generated code depends on many factors: the actual framework on your machine (probably .NET 4.5), the framework you're targeting in web.config (probably .NET 4.5 but it could be 4), and the browser and its version. ASP.NET renders different markup for different browsers (uplevel or downlevel browsers) and also renders differently based on the various .NET Framework versios and settings.
Code:
dynamic a { white-space: normal !important; }
The !important overrides whatever was set elsewhere, so if you can't get rid of the white-space: no-wrap elsewhere, this seems like a good fix to me.
Cheers,
Imar