2011-01-01から1ヶ月間の記事一覧

Google Chrome 8 では :selection { opacity: 1; } が無効となる

(本文 推敲中) 検証 Google Chrome 8 ではデフォルトで選択範囲が透過されるデザインになっています。そこで opacity: 1; を指定して完全不透過の状態にしようとしました。 ::selection { color: black; background-color: white; opacity: 1; } このスタイ…

::-moz-selection, ::selection { } と宣言すると Google Chrome, Opera で宣言ブロックごと無視される

CSS

検証 CSS3 には ::selection という疑似要素があります。Firefox v3.6.13 では ::-moz-selection と書かなければ動作しないので、以下のように書いてみました。(サンプルページは ::selection Sample) ::-moz-selection, ::selection { color: black; backgr…

element.outerHTML を実装してみる

ダウンロード gist: 781650 (outerHTML.js) - GitHub Twitterログ think49 think49Firefox v3.6.13 に outerHTML を定義しようとしたが、Object.defineProperty が未定義だった…。#JavaScript #ES5 #HTML51月16日 5:09 PM think49 think49@think49 とりあえ…

Twitter のログをHTML出力する Bookmarklet

Bookmarklet javascript:(function(){var doc = document;var script = doc.createElement('script');script.type='text/javascript';script.src='http://vird2002.s8.xrea.com/javascript/Twitter-outputHTML-bookmarklet.js';doc.getElementsByTagName('he…