safari rounding down on subpixel calculations

后端 未结 6 1594
小鲜肉
小鲜肉 2020-12-31 08:47

i have a container that takes up 829px on a row, and has a background-image of the same size.

i have a div within that container that calculates its width based on t

相关标签:
6条回答
  • 2020-12-31 09:11

    If this happens to be in relation to a slider where you have an odd set of images (e.g. 3 vertical sliders), one minor hack is to increase the middle images' width to 101%.

    .middle-slider img { width: 101%; }

    When it comes to this mishandling by browsers, this is only one mildly acceptable solution in the pile of hacks out there and certainly suffices for most use cases.

    0 讨论(0)
  • 2020-12-31 09:14

    There isn't a whole lot you can do about how different browsers render subpixels, sadly. It'd be great if we could choose how the rounding should be handled through CSS, but nope.

    Simply using pixels rather then percentages would solve the problem but that's obviously not what you want. I guess you could get around with static pixels if you change the values (possible to a percentage value) through media queries.

    Whenever I find myself in a similar scenario I float the last child to the right. A few additional pixels between the last and second last elements don't usually hurt as much as a few additional pixels between the last element and its parent.

    0 讨论(0)
  • 2020-12-31 09:14

    I just faced a similar issue and I wrote about how I solved it here: http://maxlapides.com/fixing-subpixel-layout-rendering-in-safari/

    Basically, I came up with some JavaScript that recalculates the widths of the items so they span the full width of the container.

    0 讨论(0)
  • 2020-12-31 09:31

    These days you could use flexbox (pure CSS) to handle this.

    From the source linked above:

    The main idea behind the flex layout is to give the container the ability to alter its items' width/height (and order) to best fill the available space (mostly to accommodate to all kind of display devices and screen sizes). A flex container expands items to fill available free space, or shrinks them to prevent overflow.

    0 讨论(0)
  • 2020-12-31 09:35

    I've recently encountered this issue using the whilst using the Bootstrap framework. After trawling the net I found this link http://cruft.io/posts/percentage-calculations-in-ie/ and did some device testing. iOS7 Safari seems to round down to the nearest whole number, whilst iOS8 (Which has subpixel rendering on by default) seems to round up slightly to a max. of 15 decimal places. This also seems to be the same on OSX 10.10 (Yosemite)

    As Nils K mentions in his/her answer, either use a pixel width layout, or try to adapt the layout to make sure it's wide/narrow enough to fit a whole pixel into the space

    0 讨论(0)
  • 2020-12-31 09:37

    If you can't do float: right on the last element in the 'row' because of background colors being revealed, etc, you could use the following trick to really hackily hide the background (note it's SASS code):

    .safari .parent_element { // CHANGE
      position: relative;
    
      &:after {
        content: ''
        position: absolute;
        height: 100%;
        width: 3px;
        top: 0;
        left: calc(100% - 2px); // Or sometimes 'right: 2px;' will work
        background-color: $pageBackground; // Change
      }
    }
    

    The safari class is added to <html> using a Modernizr test:

    Modernizr.addTest('safari', function() {
      var uagent = navigator.userAgent.toLowerCase();
    
      return /safari/.test(uagent) && !/chrome/.test(uagent);
    });
    

    The only reason I've ever used this test is to overcome Safari's subpixel rendering with a background gradient running between grid items that have a percentage width. I'm not advocating for it's widespread use! However, it's an effective last resort.

    0 讨论(0)
提交回复
热议问题