里面有很多圆角边框http://www.malsup.com/jquery/

Code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript" language="javascript" src="jquery-1.2.6.pack.js">
</script>
<script type="text/javascript" language="javascript" src="jquery.corner.js"></script>
<style type="text/css">
div.inner {
margin:1px;
padding:5px;
background: #F1F4F6;
border:0;
}
div.outer { margin: 0px; background:#C9D7DF;width:800px;}
</style>
<script type="text/javascript">
$(function(){
$('#con').wrap('<div class="outer"></div>');
$("#con").corner("round 18px").parent().css('padding','1px').corner("round 19px");
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div class="inner" id="con">test
</div>
</form>
</body>
</html>