Nikita Vasilyev
Nikita Vasilyev
``` @media handheld, only screen and (max-device-width: 480px) { body {overflow: auto} } ``` [Spec](http://dev.w3.org/csswg/cssom/#css-media-rule). WebKit implementation: [CSSMediaRule.cpp](http://trac.webkit.org/browser/trunk/WebCore/css/CSSMediaRule.cpp#preview).
[Travis CI: Node.js](http://about.travis-ci.org/docs/user/languages/javascript-with-nodejs/). [Testling](http://ci.testling.com/) for browsers.
Browsers mostly store longhand properties rather than shortcuts. When you write `background: rgb(40, 40, 40)` WebKit stores it as ``` style: 0: "background-image" 1: "background-repeat-x" 2: "background-repeat-y" 3: "background-attachment" 4:...
/* button.css */ .button { display: inline-block; text-align: right; /* fixes Opera */ /* background-image defined in button-theme.css */ background: no-repeat 100% -55px; } var css = CSSOM.parse(buttonCSS, {preserveFormatting: true})...
None of [CSSValue interfaces](http://dev.w3.org/csswg/cssom/#css-values) are implemented yet. #8 depends on it.
``` @namespace "http://www.w3.org/1999/xhtml"; @namespace svg "http://www.w3.org/2000/svg"; ``` http://www.w3.org/TR/css3-namespace/ http://dev.w3.org/csswg/cssom/#css-namespace-rule
``` @page { margin-left: 3cm; } @page :left { margin-left: 4cm; } ``` http://www.w3.org/TR/CSS2/page.html http://dev.w3.org/csswg/cssom/#css-page-rule WebKit implementation: [CSSPageRule.cpp](http://trac.webkit.org/browser/trunk/WebCore/css/CSSPageRule.cpp#preview).
How to reproduce the bug: 1. Open http://github.com/NV/github-live-preview/blob/gh-pages/README.md or another markdown file which you can edit 2. Press "edit" button 3. Type first line second line 4. Save 5. Result...
 Which year selected? Scroll bar could help to answer that question.
I want to compile SASS with sourcemaps for dev mode, and `--output-style compressed` for production mode. I introduces a switch in _config.yml ``` yml dev: true ``` Can I access...