Hello World

IE Fix - Radius Border
Fix IE8 & IE8 以下版本不支援 CSS3 圓角

http://jquery.malsup.com/corner/

請注意用 IE8 & IE8 以下版本確認

<style type="text/css">
.box {
width: 150px;
height: 28px;
padding: 10px;
border: 5px solid black;
background-color: green;
}
</style>

<div class="box">Hello World</div>

<script type="script/javascript">
$(this).corner();
</script>
Go to top