应用按钮边框,如gmail“创建新帐户”按钮

时间:2011-08-16 11:02:53

标签: jquery css

任何人都可以建议我如何设置像gmail“创建新帐户”这样的按钮。下面我给出了该按钮的图像
enter image description here

先谢谢。

1 个答案:

答案 0 :(得分:3)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css"> 
button
{
border:2px solid #a1a1a1;
padding:10px 40px; 
background:#dddddd;
width:300px;
border-radius:15px;
-moz-border-radius:25px; /* Firefox 3.6 and earlier */
}
</style>
</head>
<body>

<button style="height: 70px; width: 400px">Create Account</button>

</body>
</html>