本文再介紹一種關于文字與橫線的關系,中間文字,兩側橫線,主要方法:CSS偽類before,after制作左右橫線中間文字效果
HTML:
<div class="container"> <h3 class="title">Welcome to <span>Snapshot</span></h3> </div>
CSS:
.container{ width: 800px; margin: 10px auto; border: 1px solid red; } h3.title { color: #F2AE11; font-size: 1.3em; margin-bottom: 3em; text-align: center; font-weight: 500; line-height: 1.1; } h3.title span { display: block; /*設置為塊級元素會獨占一行形成上下居中的效果*/ font-size: 3em; color: #212121; position: relative; /*定位橫線(當橫線的父元素)*/ } h3.title span:before, h3.title span:after { content: ''; /*CSS偽類用法*/ position: absolute; /*定位背景橫線的位置*/ top: 52%; background: #494949; /*寬和高做出來的背景橫線*/ width: 29%; height: 2px; } h3.title span:before{ left: 5%; /*調整背景橫線的左右距離*/ } h3.title span:after { right: 5%; }