web-dev-qa-db-ja.com

"幅:calc(100%/ 3);" IE

画面全体を埋める3列のレイアウトがあるので、使用している列では次のようになります。

width: calc(100% / 3);

たとえば、私の画面の幅が782pxだとします。

782/3 =260.66̅

しかし、私が抱えている問題はInternet Explorerにあり、ピクセルを小数点以下2桁に丸めます(260.67)

260.67 * 3 = 782.01

そのため、特定の幅では、ページが下に折り返されるため、ページの3分の1が失われます。

これが

function onResize() {
    $('ul').each(function() {
        var H = eval($(this).height() / $(this).children('li').length);
        $(this).children('li').outerHeight(H);
        $(this).children('li').css('line-height', H + 'px');
        $(this).children('li').outerWidth($(this).width());
    });
}

var timer;
$(window).resize( function() {
    timer && clearTimeout(timer);
    timer = setTimeout(onResize, 100);
});
onResize();
html {
    height:100%;
}
body {
    background:black;
    margin:0;
    padding:0;
    overflow:hidden;
    height:100%;
}
ul {
    width: calc(100% / 3);
    display: inline-block;
    overflow:hidden;
    margin:0;
    padding:0;
    float:left;
    height:100%;
    list-style: outside none none;
}
ul li {
    background: rgb(230,240,163);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(230,240,163,1)), color-stop(0.5, rgba(210,230,56,1)), color-stop(0.51, rgba(195,216,37,1)), to(rgba(219,240,67,1)));
    background: -webkit-linear-gradient(rgba(230,240,163,1) 0%, rgba(210,230,56,1) 50%, rgba(195,216,37,1) 51%, rgba(219,240,67,1) 100%);
    background: -moz-linear-gradient(rgba(230,240,163,1) 0%, rgba(210,230,56,1) 50%, rgba(195,216,37,1) 51%, rgba(219,240,67,1) 100%);
    background: -o-linear-gradient(rgba(230,240,163,1) 0%, rgba(210,230,56,1) 50%, rgba(195,216,37,1) 51%, rgba(219,240,67,1) 100%);
    background: linear-gradient(rgba(230,240,163,1) 0%, rgba(210,230,56,1) 50%, rgba(195,216,37,1) 51%, rgba(219,240,67,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f0a3', endColorstr='#dbf043',GradientType=0 );
    text-align:center;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul id="ul1">
    <li>Test 1</li>
    <li>Test 2</li>
</ul>
<ul id="ul2">
    <li>Test 3</li>
    <li>Test 4</li>
</ul>
<ul id="ul3">
    <li>Test 5</li>
    <li>Test 6</li>
</ul>

この問題を解決するエレガントな方法を知っている人はいますか?

私はcouldwidth: 33.33%を使用できることを知っていますが、100%の強打ではないことを知って泣く私の小さな部分があります。

12
Jamie Barker

@ web-tikiによる提案は次のように思われます。

width:33.33%;

最良のオプションです。

9
Jamie Barker

width: calc(100% * 0.33333);を試して、フロートの丸め誤差が注意またはwidth: calc((100% / 3) - 0.1px);の側でエラーになることを確認してください。

12
Niklas Brunberg

より良いオプション:

li {
    &:last-child {
        margin-right: -1px;
    }
}

そして、あなたは使用することができます:幅:calc(100%/ 3)

0
avanember