问答详情
源自:2-1 径向菜单展开效果

一般来说,position:absolute之后跟left,top,这里为啥是width,height?

.nav-wrap nav a{                position: absolute;                width: 30px;                height: 30px;                background: #f44283;                text-align: center;                line-height: 30px;                text-decoration: none;                color: #fff;                border-radius: 3px;                text-shadow: 1px 1px 0px #000;                transform: translate(-50%,-50%);            }


提问者:蒹葭苍沧 2021-01-18 18:38

个回答

  • 慕标9583342
    2021-02-19 15:42:11

    position:absolute此处只做脱离文档流使用,或者在其他地方会去定义left和top这些值