Skip to content

luwu 5 椭圆按钮的制作

Lu Wu edited this page Nov 12, 2015 · 2 revisions

带框椭圆按钮的实现

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
  text-align:center;
  border:2px solid #ff9500;
  padding:2px 18px; 
  background:#ffffff;
  border-radius:25px;
  -moz-border-radius:25px; /* 老的 Firefox */
}
</style>
</head>
<body>

<div><button type="button">提交</button></div>

</body>
</html>
Clone this wiki locally