Search code examples
cssgoogle-chromeword-spacing

Chrome Update Version 24.0.1312.52 m Messes up Word Spacing


Chrome was recently updated and now some of my sites with a style of word spacing is wrapping to the second line with the last word. You can view it at the link below, with the header (H1) tag. Is this a bug or is there a work around? This is on Windows 7 64 bit.

http://exposurebasketballtournaments.com/3008/3rd-4th-boys-basketball-tournament


Solution

  • I am using chrome canary(V.26 on Windows 7) and I see this effect as well. I used chrome inspector to see if it was in the css code and it seem that this code

    in element
    <div class="event-details">
    
    
     body.event .event-header .event-details {
    float: left;
    }
    

    is causing this effect, correct me if I'm wrong :)

    EDIT

    If this is your site you can prevent it by adding this to the code min-width: 540px; or just removing float:left

    This question on SO might be similar to your problem.