Home > Article > Web Front-end > How to Achieve Border Radius in Internet Explorer 8?
Achieving Border Radius in Internet Explorer 8
Despite the widespread support for border radius in modern browsers, Internet Explorer 8 (IE8) presents a unique challenge. For developers seeking a lightweight solution, jQuery Corner is a viable option.
To implement border radius in IE8 using jQuery Corner:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script src="http://malsup.github.com/jquery.corner.js"></script>
$('.box').corner();
In HTML, define the element with the desired border radius:
<div class="box">Content</div>
.box { width: 150px; height: 28px; padding: 10px; }
The above is the detailed content of How to Achieve Border Radius in Internet Explorer 8?. For more information, please follow other related articles on the PHP Chinese website!