I have a WebBrowser control inside a WinForm (C#), this WebBrowser load a page that have a css like this:
button {
border: 0;
width: 280px;
height: 120px;
position: relative;
text-align: center;
border-radius: 22px;
padding: 3px 0px 3px 3px;
margin: 5px 1px 3px 0px;
transition: 0.3s ease-in-out box-shadow;
}
button:hover {
box-shadow: 0 0 18px rgba(81, 203, 238, 1);
}
button:active {
box-shadow: 0 0 18px rgba(81, 203, 238, 1);
}
This works in IE, when i touch (is a touch-screen) the button it's higlighted with bow-shadow but not work in WebBrowser inside WinForm, only occurs when the button is released, and I don't undestrand why.
thanks in advance for the help.
Dan