宽高不确定,垂直居中

2018-11-21  本文已影响3人  泪滴在琴上
>div {
                    width: 60%;
                    height: 0; // 设置高为0,让padding撑起高
                    padding-bottom: 60%; /* 让div的高等于宽 */
                    border-radius: 50%;
                    color: white;
                    margin: 20px auto;
                    position: relative;
                    i{
                        font-size: 60px;
                        position: absolute;
                        top:50%;
                        left:50%;
                        transform:translate(-50%,-50%);
                        text-align: center;
                    }
}
上一篇 下一篇

猜你喜欢

热点阅读