查詢之後被丟棄。我不確定它爲什麼會下降?CSS時按鈕變爲ASP按鈕
問題:
當我改變<button
到<asp:button
的CSS的一部分後不再工作。失敗代碼的一部分是#course .bottom .btn-next:after
代碼:
#course .bottom .next {
padding-right: 40px;
}
#course .bottom .btn-next {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
#course .bottom .btn-next:after {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
border-color: rgba(255, 255, 255, 0);
border-left-color: #ffffff;
border-width: 20px;
margin-top: -20px;
}
研究例如:
Is it possible to have a :after pseudo element on a button?(涉及到html不.NET按鈕)
到底是什麼問題嗎? – Izzy
編輯:當我將html按鈕更改爲ASP按鈕時,如何保持代碼的'after'部分工作。我不確定它爲什麼會下降? – indofraiser
一個潛在的解決方案是: 但我寧願只保留一個按鈕 –
indofraiser