JSFiddle - React, Tailwind, and code Playground
by whitewolf
HTML
<!--[if lt IE 10]>
<script src="http://files.cnblogs.com/whitewolf/PIE.js"></script>
<![endif]-->
<div id="target" class="rounded" style="">
Test </div>
<input clas="rounded" value="123"/>
CSS
.rounded{{ height:82px; width:200px; -moz-border-radius:8px; -webkit-border-radius:8px; border-radius:8px; background:#FC3;-moz-box-shadow:0px 4px 5px #9C9C9C; -webkit-box-shadow:0px 4px 5px #9C9C9C; box-shadow:0px 4px 5px #9C9C9C;
behavior: url(pie.htc);}
JavaScript
$(function() {
alert(window.PIE);
if (window.PIE) {
$('.rounded').each(function() {
PIE.attach(this);
});
}
});