/(^o^)\ナンテコッタイ
<div class="hexagon"> <div class="hexagon-text"><!--文章を入れる--></div> </div>
.hexagon { position: relative; display: block; width: 204px; height: 353px; margin-left: 101px; background: black; &:before, &:after { position: absolute; top:0; left:0; display: block; content: ""; width: 100%; height: 100%; background: inherit; z-index:1; } &:before { -webkit-transform: rotate(60deg); } &:after { -webkit-transform: rotate(-60deg); } } .hexagon-text { position: relative; left: -101px; z-index:2; width: 406px; height: 353px; font-size: 16px; line-height: 1.75; }
できて…ない!(当たり前)
調整大変!しかも全角空白がコピーされちゃうし、無駄な改行が…
文字列をコピーしても改行や余計な文字が含まれない! が、一体何だこのHTMLは…
※試験運用版のウェブ プラットフォームの機能を有効にしたChromeのみ
CSS Shapesを使うと、要素の外側や内側にあるテキストを、円形や矩形、多角形に沿ってレイアウトできる!
使い方は簡単!
.circle { float: left; width: 100px; height: 100px; -webkit-shape-outside: circle(0, 0, 100px); }
※ なんか名前変わるようで… New CSS Shapes Syntax
<g xmlns="http://www.w3.org/2000/svg"> <polygon style="fill:#000000;" points="101.652,352 0.304,176 101.652,0 304.348,0 405.696,176 304.348,352 "/> <path d="M304.059,1l101.061,175.5L304.059,352H101.941L0.88,176.5L101.941,1H304 M304.637,0H101.363L-0.273,176.5L101.363,353 h203.273l101.637-176.5L304.637,0L304.637,0z"/> </g>
<polygon style="fill:#000000;" points="101.652,352 0.304,176 101.652,0 304.348,0 405.696,176 304.348,352 "/>
↓
101.652,352 0.304,176 101.652,0 304.348,0 405.696,176 304.348,352
101.652,352 0.304,176 101.652,0 304.348,0 405.696,176 304.348,352 ↓ 101.652px 352px, 0.304px 176px, 101.652px 0px, 304.348px 0px, 405.696px 176px, 304.348px 352px
これを shape-outside: polygon(座標); に指定する。
<div class="hexagon"> <div class="hexagon-text"> 私も今日おおかたそうした関係児といったののところにしですた。たとい事実を話人もさぞどんな解でしましかもを叱らて得るたには紹介踏みなかろでて、それほどには終りですますうた。本位の思うですのはけっして絶対にいよいよなけれないです。ともかくネルソンさんと安心事少し品評を終りなろその金力私か発見にという小謝罪たたでしょたて、この今はみんなか心教師にいうので、嘉納君ののに絵の私からちょうどお発表と与えと私腰と大乱暴 </div> </div>
.hexagon { position: relative; display: block; width: 204px; height: 353px; margin-left: 101px; background: black; &:before, &:after { position: absolute; top:0; left:0; display: block; content: ""; width: 100%; height: 100%; background: inherit; z-index:1; } &:before { -webkit-transform: rotate(60deg); } &:after { -webkit-transform: rotate(-60deg); } } .hexagon-text { position: relative; top: 5px; left: -97px; z-index:2; width: 406px; height: 343px; font-size: 16px; line-height: 1.75; letter-spacing: 0.044em; color: #fff; word-break: break-all; -webkit-shape-inside: polygon( 101.652px 352px, 0.304px 176px, 101.652px 0px, 304.348px 0px, 405.696px 176px, 304.348px 352px ); }
文章にも余計な物が入らず、シンプルに。
ご清聴ありがとうございました。