定位居中布局+js日常

 javascript:void(0);

使按钮不可点击

position: absolute;定位

center{

    position: absolute;
    width: 80%;
    height: 1rem;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;

}

通过margin:auto  水平垂直居中

猜你喜欢

转载自blog.csdn.net/qq_40001322/article/details/81236495