任何人都可以建议我如何设置像gmail“创建新帐户”这样的按钮。下面我给出了该按钮的图像
先谢谢。
答案 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>