I've Been practicing some CSS By making some rollover buttons, and using -webkit but i heard that -webkit is only compatible with chrome and safari. So if i want to make the animations work on other browsers what code do i add? Here is my code:
Html:
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="main.css">
<title>Rollover buttons</title>
</head>
<body>
<article>
<p id="button">Button!</p>
</article>
</body>
</html>
body{
text-align:center;
}
#button{
display:block;
border:2px solid green;
margin:150px 400px;
background:#604085;
color:#ffffff;
width:100px;
height:50px;
-webkit-border-radius:30px;
-webkit-transition:background 0.5s,width 0.5s, height 0.5s;
}
#button:hover{
background:#67e456;
width:110px;
height:60px;
}