CSS3簡單圓角立體按鈕效果

antzone發表於2018-07-03

分享一段程式碼例項,它實現了簡單的圓角立體按鈕效果。

這樣的需求也許在實際應用中還是有不少的。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.demo a{
  display:block;
  width:150px;
  height:44px;
  line-height:44px;
  text-align:center;
  border:1px solid #428cc8;
  color:#666;
  font-size:16px;
  margin-bottom:5px;
  border-radius:3px;
  background-color:#fefefe;
  background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fefefe), color-stop(1,#eee));
  color:#666;
  text-decoration:none;
}
</style>
</head>
<body>
  <div class="demo">
    <a class="link" href="#">螞蟻部落</a>
  </div>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。

相關閱讀:

(1).border-radius參閱CSS3 border-radius一章節。

(2).gradient參閱CSS3 linear-gradient線性漸變一章節。

相關文章