2011-06-03, 13:29:51
Well, I know that IE9 supports rounded corners because I used this simple file, border.html, to test it. It works, I just don't quite get what do you mean by "not supported" in IE9.
Code:
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="author" content="Administrator" />
<title>Rounded Corners</title>
</head>
<body>
<style>
#wrapper {
background: #eaeaea;
border-radius: 28px 10px 0 0;
}
</style>
<div id="wrapper">
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
Some Text <br />
</div>
</body>
</html>