我想在我的html代碼中實現一個圓角到框。 當我在Chrome上運行該文件時,我有框和所有屬性,但角落不會圓。 我在MAC OSX Lion上使用Komodo Edit。 解決方案是什麼? 感謝webkit框四捨五入難點
<!doctype html>
<html lang="en">
<head>
<meta charset=="utf-8" />
<link rel="stylesheet" href="new.css" />
</head>
<body>
<div id="box">
<p id="text"> Hello </p>
</div>
</body>
</html>
CSS3:
body {
text-align:center;
}
#box {
display: block;
width: 500px;
margin:50px auto ;
padding:15px ;
text-align:center;
border: 1px solid blue;
background: red;
-webkit-border-radius: 25p;
}
#text {
font:bold 100px Century Gothic;
}
它的工作!非常感謝你 – 2012-01-27 14:34:02