美文网首页
css calc()

css calc()

作者: 巨龙在盯着你呐 | 来源:发表于2020-07-14 17:15 被阅读0次

    常用场景

    1.元素绝对定位居中显示

        .foo {

            position: absolute;

            top:calc(50% - 150px);

            left:calc(50% - 150px);

        }

    2.栅格系统

        width: calc(100% / 6)

    3.清晰度

        opcity: calc(1 / 10)

    相关文章

      网友评论

          本文标题:css calc()

          本文链接:https://www.haomeiwen.com/subject/xldfhktx.html