calc routine test

by danield770

HTML

<body>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
</body>

CSS

body
{
    min-width: 310px;
}
div
{
    height: 100px;
    float: left;
    background:pink;
    width: 50px;
    margin-right: calc((100% - 300px) / 5 - 1px);
}
div:last-child
{
    margin-right:0;
}