static normal flow of the page, ignores top, left, bottom, right declarations.
relative normal flow of the page, offset by the amount the top, left, bottom, right declarations. A relatively positioned element serves as a containing block (useful for its children).
absolute taken out of the normal flow of the page and positioned at the desired coordinates relative to its containing block.
fixed taken out of the normal flow of the page and positioned at the desired coordinates relative to the browser window.
HUGE / New Browsers
ie8 - CSS {outline:}
“ Enables elements to be highlighted without affecting their size.”
“ A Web Slice is a section of a webpage that is treated like a subscribable item, just like a feed. To enable a Web Slice on your website, annotate your webpage with class names for the title, description, and other subscribable properties.”
var objs = document.querySelectorAll('h3, p, ul, code');
for (var i = 0; i < objs.length; i++) {
objs [i].style.display = 'none';
}
Test your browser:
http://webkit.org/perf/slickspeed/
HUGE / New Browsers
ie8 - Data URI HUGE / New Browsers Embed small external resources (like CSS files or images) directly into a URL on a webpage: <img alt="Image fed from data url" src="data:image/png;base64,iVBORw0KGgoAAA..." /> * binary file can be represented inline as a string
ie8 - W3C's ARIA Support
ARIA stands for Accessible Rich Internet Applications
Enables people with disabilities to access dynamic web content
IE8 uses ARIA role, state, and property information to communicate with assistive technologies
0 comments
Post a comment