15. 15
87 order flexible box
88 align-content flexible box
89 align-items flexible box
90 align-self flexible box
91 flex flexible box
92 flex-basis flexible box
93 hanging-punc
tuation
text
94 hyphens text 単語途中での改行方法を指定する
95 letter-spacing text
96
line-break
text 禁則処理とは、文章の読みやすさや美的な観点から、句
読点や括弧等の文字が行頭(または行末)に来ないよう
にする処理です。
97 line-height text
98 overflow-wra
p
text 単語途中の改行を指定する
99 tab-size text
100 text-align text
101 text-align-last text エレメントの透過性
102 text-combine-
upright
text 複数の文字による,単独の文字空間の中への結合
103 text-indent text
104 text-justify text 均等割付の形式を指定する(IE が独自に採用)
105 text-transfor
m
text
106 white-space text
107 word-break text 文の改行の仕方について指定する(IE が独自に採用)
108 word-spacing text
109
word-wrap
text 単語の途中で改行するかどうかを指定する(IE 独自の
仕様)
110 text-decoratio
n
text decoration テキストの下線?上線?打ち消し線?点滅を指定する
111 text-decoratio
n-color
text decoration テキスト装飾色
16. 16
112 text-decoratio
n-line
text decoration テキスト装飾線
113 text-decoratio
n-style
text decoration テキスト装飾種
114 text-shadow text decoration テキストに影をつける
115 text-underline
-position
text decoration テキスト下線の位置
116 @font-face font
117 @font-featur
e-values
font
118 font font
119 font-family font
120 font-feature-s
ettings
font OpenType フォント機能の利用について、有効/無効を
指定する
121 font-kerning font 欧文フォントにカーニングを適用する
122 font-languag
e-override
font
123 font-size lists and counters
124 font-size-adju
st
lists and counters フォント同士のサイズのバラつきを調整する
125 font-stretch lists and counters フォントの形状を幅広?幅狭にする
126 font-style lists and counters
127 font-synthesi
s
lists and counters
128 font-variant lists and counters
129 font-variant-a
lternates
lists and counters
130 font-variant-c
aps
lists and counters
131 font-variant-e
ast-asian
lists and counters
17. 17
132 font-variant-li
gatures
lists and counters
133 font-variant-n
umeric
lists and counters
134 font-variant-p
osition
lists and counters
135 font-weight lists and counters
136 direction lists and counters
137 text-orientatio
n
lists and counters
138 text-combine-
upright
table
139 unicode-bidi table
140 writing-mode table
141 border-collap
se
table
142 border-spaci
ng
table
143 caption-side table
144 empty-cells table
145 table-layout table
146 counter-incre
ment
lists and counters
147 counter-reset lists and counters
148 list-style lists and counters
149 list-style-ima
ge
lists and counters
150 list-style-posit
ion
lists and counters
151 list-style-type lists and counters
152 @keyframes animation
153 animation animation アニメーションについてまとめて指定する
154 animation-del
ay
animation
アニメーションがいつ始まるかを指定する
27. 27
Webmessaging
Web messaging は DOM を脆弱性にさらさずに文書をブラウザ間で共有する。ウエブサイト間のコミュニケーシ
ョンでも、cross-domain XMLHttpRequest,や dynamic script insertion は DOM を脆弱製にさらすが、Web
messaging はさらさない。
ウエブサイトから、第三者のホストする広告にデータを送信したい場合、通常はセキュリティの例外が認めら
れます。しかし, Webmessaging を利用することでメッセージイベントとしてデータが送信されます。
web messaging は cross-document messaging と channel messaging と 2 種 類 あ り ま す 。 前 者 は
window.postMessage(), 後者は MessageChannel というコードを利用します。サーバーに送信されるイベント
と web sockets と並ぶコミュニケーションインターフェイスでは重要の要素です。
28. 28
Web Workers
ウェブ ワーカーを使用すると、UI や他のスクリプトによるユーザー インタラクションの処理をブロックす
ることなく、長時間実行のスクリプトによる計算集約型のタスクの処理をバックグラウンドで処理することを
可能にする API です。
例)
var myWorker = new Worker("worker.js");
var worker = new Worker('task.js');