28. シェイプの内側に流し込み
-webkit-shape-inside
CSS
.circle {
/* shape the element as a circle */
shape-inside: polygon(0px, 150px, ...);
}
13年11月30日土曜日
.heart {
/* shape the element as a heart */
shape-inside: polygon(150px, 32px, ...);
}
29. シェイプの周囲に回り込み
-webkit-shape-outside
CSS
.circle {
/* shape the element as a circle */
shape-outside: polygon(0px, 150px, ...);
}
13年11月30日土曜日
.heart {
/* shape the element as a heart */
shape-outside: polygon(150px, 32px, ...);
}