とても便利なfont-awesomeで、人気のSNSを表示させてみましょう。
font-awesomeのCDNを読み込む。
フォントを指定します。
くつろぎのアイコン
見出しの装飾
見出しのサイドにボーダーを出す
sample
HTMLサンプル
sample
CSS
h2 { text-transform: uppercase;/*大文字指定になる*/ position: relative; text-align: center; } /* spanで囲み、その背景を白を敷く。 */ h2 span { position: relative; z-index: 2; display: inline-block; margin: 0 2.5em; padding: 0 1em; background-color: #fff; text-align: left; } /*h2の前にグレーの背景*/ h2::before { position: absolute; top: 50%; z-index: 1; content: ''; display: block; width: 100%; height: 1px; background-color: #ccc; }