Textarea重叠粘脚页脚
我有一个textarea问题。它与下图中所示的粘性页脚重叠。我怎样才能解决这个问题?Textarea重叠粘脚页脚
CSS我的页脚
#footer { display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background-color: #4d4d4d;
border-top: 1px solid #e87f29;
color: #efefef;
position: fixed;
bottom: 0;
min-width: 100%;
}
回答:
你需要在#footer的CSS加 “Z-指数”,并设置z-index的数量比textarea的包装的更大。
以上是 Textarea重叠粘脚页脚 的全部内容, 来源链接: utcz.com/qa/260637.html