我試圖在我的表格上疊加覆蓋。基本上我不希望用戶訪問表單,只是通過添加覆蓋來阻止內容。我添加了疊加,但我仍然可以在輸入字段中輸入。我如何阻止?添加疊加層後,如何禁用div元素?
.overlay {
background: rgba(0, 0, 0, .75);
text-align: center;
opacity: 0;
width: 100 %;
height: 100 %;
-webkit-transition: all 0.3s ease - in -out;
-moz-transition: all 0.3s ease - in -out;
-o-transition: all 0.3s ease - in -out;
-ms-transition: all 0.3s ease - in -out;
transition: all 0.3s ease - in -out;
opacity: 1;
}
<h1>Hello Plunker!</h1>
<div class="overlay">
<input type="text">First name
</div>
你的輸入是那個''.overlay''元素的子元素。你需要父母定位「親戚」,然後在父母中定位「絕對」的疊加。 – Crowes
使用指針事件的CSS:無;將此添加到疊加類。 –