CSS設定div邊框演示程式碼

antzone發表於2018-07-16

分享一段程式碼例項,它演示了設定各種樣式的div邊框效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
* {
  background: #ccc;
}
 
div {
  border: 8px solid #F60;
  width: 250px;
  height: 120px;
  line-height: 120px;
  margin: 10px auto;
  text-align: center;
  font-family: "微軟雅黑";
  font-size: 24px;
  font-style: normal;
  color: #590;
}
.div1 {
  border-radius: 30px;
}
.div2 {
  border-top-left-radius: 3em;
  border-top-right-radius: 3em;
}
.div3 {
  border-bottom-left-radius: 6em;
  border-bottom-right-radius: 6em;
}
.div4 {
  border-left-style: dashed;
  border-right-style: dotted;
}
.div5 {
  border-left-style: double;
  border-right-style: ridge;
}
.div6 {
  border-style: groove;
}
.div7 {
  border-style: inset;
}
.div8 {
  border-style: outset;
}
.div9 {
  border-width: 8px;
  border-radius: 30px;
  width: 1000px;
  height: 30px;
}
</style>
</head>
<body>
  <div class='div1'>radius</div>
  <div class='div2'>部分圓角</div>
  <div class='div3'>部分圓角</div>
  <div class='div4'>dashed和dotted</div>
  <div class='div5'>double和ridge</div>
  <div class='div6'>groove</div>
  <div class='div7'>inset</div>
  <div class='div8'>outset</div>
  <div class='div9'></div>
</body>
</html>

上面的程式碼演示了邊框效果,更多內容可以參閱相關閱讀。

相關閱讀:

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

相關文章