我無法在網頁中響應div按鈕。我已將所有像素值更改爲百分比,問題仍然存在。無法使div響應和覆蓋
.wrapper {
display: block;
position: absolute;
left: 30%;
transform: translate(-50%, -50%);
}
.testing {
padding: 10% 10%;
text-align: center;
text-decoration: none;
color: #ffffff;
background-color: #009ac9;
border: 2px solid transparent;
font-size: 90%;
display: inline-block;
border-radius: 0.1em;
transition: all 0.2s ease-in-out;
position: relative;
overflow: hidden;
}
.testing:hover {
background-color: #ffffff;
color: #009ac9;
border-color: #009ac9;
}
<div class="wrapper">
<a href="#" class="testing">LOG IN</a>
</div>
的另一個問題是,我有一個全屏覆蓋菜單,我想禁用此按鈕時覆蓋存在。截至目前,當疊加層出現時,該按鈕仍然可點擊。我想禁用它: Image
現狀我不明白嗎?你想要什麼。??你想'.wrapper'是100%的寬度。和關於第二個** Q ** - 請提供更多包含菜單和此按鈕的代碼。 – weBBer
我希望按鈕具有響應性,以便隨頁面縮小,並在移動設備上查看。截至目前,由於某種原因,尺寸並未減小。 至於覆蓋,按鈕代碼是我上面提到的相同。而我使用的覆蓋是這樣的:[鏈接](https://tympanus.net/Development/FullscreenOverlayStyles/) – Inception
也許你正在尋找單位'vw'。將你的'font-size'改爲'3vw',看看如果你調整頁面大小會發生什麼。 – Huelfe