About Estelle
Freelance web developer, author, trainer, conference presenter and party planner. This blog is not longer active. Check out Standardista or @estellevw instead.-
Most recent posts
Accessibility
Browser Quirks & Hacks
References
- 100+ CSS3 properties (values & browser support)
- @font-face
- All XHTML elements
- Character Entity Calculator
- CSS Background Properties
- CSS Selectors & Browser Support
- Deprecated Elements & Attributes
- DTD
- HTML entities in CSS & JS
- http-equiv
- iPhone/Safari HTML, CSS & JS
- JavaScript Date Object
- JavaScript Date Object – methods
- XHTML Entities
Resources
Tutorials
@webdevtips’ Tips
Admin Stuff
Blog Categories
Category Archives: CSS (including hacks)
Hack for Webkit
If you want to target Webkit only, use this in your CSS: @media all and (-webkit-min-device-pixel-ratio: 1){ selectors { properties: values; } } Put all your Webkit only properties and valus withing the @media at-rule block.
Posted in Browsers, CSS (including hacks), Web Development
3 Comments
Safari 5 Link selector: bug or security feature?
Safari 5 came out today. I am still testing. Safari 5 does not support all CSS selectors. While webkit (the engine behind Safari) has been supporting all CSS selectors, including all proposed CSS3 selectors for a long time now, today’s … Continue reading
Posted in Browsers, CSS (including hacks)
16 Comments
Hack for Webkit: Filter for Chrome and Safari
To target only webkit, which includes Google and Safari, encompass all the CSS that you want to use just to target Webkit in the following @media block: @media screen and (-webkit-min-device-pixel-ratio:0) { .myClass { background-color: #FF0000; } #myId {color: #0000FF;} … Continue reading
Posted in Browsers, CSS (including hacks)
6 Comments
CSS3 Border Properties, etc.
At this blog you’ll find my summary article on all the CSS3 properties, values and browser support. CSS3 has many different components, and I am digging into each category. I just posted CSS3 Border Properties & Browser Support tonight, and … Continue reading
Posted in CSS (including hacks)
Leave a comment
CSS3 Properties, Values & Browser Support
CSS Properties Index Below is every most CSS3 Properties, all the possible values for that property, and the support for each property value from grade-A browsers This grid does not include animation, tranforms, grids, columns, layouts or templates. I have … Continue reading
Posted in Browsers, CSS (including hacks), Web Development
4 Comments
CSS3 Columns & Browser Support
I am busy working away at a grid of all the CSS3 properties. But, as I test them, I figure I would share. Here is the first set: the column properties. I have a grid of all of the CSS3 … Continue reading
Posted in CSS (including hacks)
1 Comment
@font-face Browser Support & Tutorial
Up to now, web developers were limited in what typography they could use on a website to what the client had installed in their environments. Now that we have finally convinced designers to not include any fonts outside of georgia, … Continue reading
Posted in Browsers, CSS (including hacks), Web Development
25 Comments
Web Development for the iPhone: HTML, CSS & JS Support
Safari and Safari for the iPhone support all HTML elements, including deprecated elements and even some proprietary elements that were never part of any W3C specifications. In addtion, Safari is supporting some HTML5 elements, even though the HTML5 specifications have … Continue reading
More CSS, XHTML and JavaScript at Community MX
I have been somewhat prolific as a technical writer for Community MX over the past 12 months. If you are interested in any of the articles, they are listed below. I will add new articles to this list as they … Continue reading
Posted in CSS (including hacks), firebug, JavaScript, Web Development
2 Comments
6 Firefox 3.5 updates of interest
Firefox 3.5 CSS 3 Selector Support Firefox 3.5 was released today. Like the beta version that I tested a few months ago, FF3.5 supports all CSS3 selectors. See the CSS3 Browser support grid. This is great news, and makes us … Continue reading
Posted in Accessibility, Browsers, CSS (including hacks), Web Development
1 Comment