input和textarea输入值会遮挡其他按钮
发布于 5 年前 作者 min08 10416 次浏览 来自 问答

如图一二所示,用input和textarea输入数据时,会遮挡其他按钮,图中“介绍”两字用的是text则不会遮挡按钮,当无输入时也不会遮挡,不知道是不是BUG,如果不是求大神给个解决办法

2 回复

有大神吗

//提交
.reservation {
    font-size:50rpx;
    width:50%;
    height:50px;
    position:fixed;
    bottom:0px;
    border:1px solid rgba(0,116,255,0.61);
    background-color:greenyellow;
    display:flex;
    justify-content:center;
    align-items:center;
}
//重置
.reset {
    font-size:50rpx;
    width:50%;
    height:50px;
    position:fixed;
    bottom:0px;
    right:0px;
    border:1px solid rgba(0,116,255,0.61);
    background-color:red;
    vertical-align:middle;
    display:flex;
    justify-content:center;
    align-items:center;

}

//介绍

.card-data-6 {

  position:relative;

  height:50rpx;

  width:130rpx;

  left:8%;

  top:260px;

}

//输入框

.card-input-6 {
    position:relative;
    width:73%;
    left:23%;
    font-size:40rpx;
    border:1px solid rgba(0,116,255,0.61);
    top:237px;
    height:270px;
}
回到顶部