CSS如何實現底線重合效果

admin發表於2017-02-22

有時候要實現這樣的效果,標題下面的下劃線顏色和容器的下劃線的顏色不同

下面就分享一段程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>CSS教程-螞蟻部落</title>
<style type="text/css">
*{
  padding:0;
  margin:0;
}
.line{
  border-bottom:2px solid #EBEBEB;
  margin-top:10px;
  margin-bottom:10px;
}
h2{
  border-bottom:2px solid skyblue;
  font-size:14px;
  line-height:20px;
  display:inline-block;
  *display:inline;
  *zoom:1;
  margin-bottom:-2px;
}
</style>
</head>
<body>
<div class="line">
  <h2>螞蟻部落一</h2>
</div>
<div class="line">
  <h2>今天是個好日子</h2>
</div>
<div class="line">
  <h2>只有奮鬥才會有美好的結果</h2>
</div>
<div class="line">
  <h2>每一天都是美好的,必須要好好的珍惜</h2>
</div>
</body>
</html>

相關文章