This is pure css that will help you to make Rounded Corners.
<style type="text/css"> .box { border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; } </style> <div> <!--CONTENT--> </div>
Comments are closed.