मैं IE पर काम करने के लिए कुछ छद्म तत्वों को प्राप्त करने की कोशिश कर रहा हूं, लेकिन यह मुझे नहीं होने देता है।
यह CSS को पार करता है और कार्य करता है जैसे कि यह वहाँ नहीं है, जो थोड़े मुझे उत्तेजित करता है।
किसी को पता चल जाएगा कि मैं क्या गलत कर रहा हूं?
.newbutton {
border-radius: 50%;
width: 74px;
height: 74px;
position: relative;
background-color: black;
margin: 60px 0px 25px 17px;
overflow: visible;
}
.newbutton:before {
content: "f";
width: 80px;
height: 80px;
position: absolute;
border-radius: 50%;
z-index: -1;
top: 37px;
left: 37px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-animation-name: fadecolor;
-webkit-animation-duration: 5s;
-webkit-animation-iteration-count: infinite;
animation-name: fadecolor;
animation-duration: 5s;
animation-iteration-count: infinite;
}
.newbutton:after {
content: "";
width: 80px;
height: 80px;
position: absolute;
border-radius: 50%;
z-index: -2;
top: -3px;
left: -3px;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#01BAE8), to(#0183D5));
}
<div class="starttour">
<div class="newbutton headerbutton">
<span class="iconhead icon-02-arrow-icon"></span>
</div>
<p>START TOUR</p>
</div>
क्या होता है इसका स्क्रीनशॉट:
-webkit-
बिट्स को पार नहीं करता है ।