Shishimushi

9.50 build9770

最近の 9.50 ではニコニコ動画がまともに観れなかった(動画ファイルを全て読み込まないと再生されなかった)のが、今回の build では 9.25 や他のブラウザのように普通に再生できる。でも恐い既知の問題もある。

Fixed dynamic updating of CSS3 selectors (:first-child, :last-child, :empty etc. selectors)ってのも嬉しいけど(何がどう修正されたのかわからんけど)、Added support for the CSS color and background-color properties for the ::selection pseudo-element(疑似要素 ::selection の color,background-color プロパティのサポート)ってのが嬉しい。これを利用すると Web ページ上の選択した(反転させた)テキストのスタイルを指定することが可能になる。

例えば、今回の build でこのページを見ている人は、以下のテキスト達を選択(反転)させてみて。

  1. 選択すると文字が赤。
  2. 選択すると文字が青。
  3. 選択すると背景が赤で文字は白。
  4. 選択すると背景が青で文字は白。
  5. 選択すると背景が緑で文字は白。

次の画像のようになるはず。

::selection

CSS はこんな具合。

<ol>
<li class="cs-redwhite">選択すると背景が赤で文字は白。</li>
</ol>

---

li.cs-redwhite::selection {
color: white;
background-color: red;
}

いまいち使いどころに困るんだけど嬉しい、そんな感じ。

These are the CSS properties that apply to ::selection pseudo-elements: color, background, cursor (optional), outline (optional). The computed value of the 'background-image' property on ::selection may be ignored.

Selectors - 7.3. The ::selection pseudo-element

ユーザCSSで勝手に自分の好きな色にするんだ!もちろん!importantつきでだ!

2008-02-02 - d:id:quaa

投稿者:芦塚 | 投稿日時: 2008年 2月2日(土) 03:22

 トップページ 次へ