[装飾系]テキストセンター見出し 両端に三角カッコ

CSS HTML
 
 

両端に三角カッコ

両端に三角カッコをつけた見出しです。

browser:  ✔︎ ✔︎ ✔︎ 
ニャン易度 

見出しテキスト

<h1 class="cp_h1title"><span>見出しテキスト</span></h1>
.cp_h1title {
  position: relative;
  text-align: center;
  height: 50px;
  overflow: hidden;
}
.cp_h1title:before,
.cp_h1title:after {
  position: absolute;
  top: 0;
  display: block;
  width: 20px;
  height: 48px;
  content: '';
  border: 1px solid #00897b;
}
.cp_h1title:after {
  right: 0px;
}
.cp_h1title span:before,
.cp_h1title span:after {
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 2.5em;
  background: #fafcfc;
  border-right: 1px solid #00897b;
}
.cp_h1title span:before {
  left: 8px;
  top: -20px;
  transform: rotate(160deg);
}
.cp_h1title span:after {
  right: 12px;
  top: -20px;
  transform: rotate(340deg);
  z-index: 1;
}

copypet.jp

CSS3などで新たに追加された要素・装飾方法など、日々コードを書いていないと忘れてしまったり、ささっとプロトタイプを作る時などちょっとしたことに時間をかけている暇はない。そんな時に「あ〜、あれストックしときゃよかったなぁ」って困った自分用のストックブログです。カスタマイズなどがしやすいよう、昨今のweb制作に取り入れられる一般的なコードを中心に掲載しています。

More Info

こんな記事はいかがですか?