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
Search Results for: iphone
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
iPhone Screen Orientation: Portrait and Landscape
When you tilt your iPhone, the screen changes orientation. The website you developed for the default portrait orientation may not look good in landscape mode, especially if you developed your page for the 480 (h) x 320 (w) screen. In … Continue reading
Posted in Browsers, Character Entities, HTML, iPhone, JavaScript, Web Development
Tagged iPhone
8 Comments
CSS Browser Support (iPhone, IE8, IE7 Compliance Mode, FF 3.5 beta & Safari 4 Beta included)
Note: This article is about CSS selectors. I also have a post on All CSS2.1 Properties and Values, and Broswer Support (huge file, but worth the download time) Update 6/30/09: Firefox 3.5 was released today. Like Safari 3.1 and newer … Continue reading
Posted in Web Development
7 Comments
hover pseudoclass for the iPhone
Since you’re not hovering, there is no hover pseudo class on the iPhone. instead they have touch events. To simulate the :hover pseudo class, include javascript similar to this: var myLinks = document.getElementsByTagName(‘a’); for(var i = 0; i < myLinks.length; … Continue reading
Posted in Best Practices, CSS (including hacks), HTML, IE7, iPhone, JavaScript, Web Development
8 Comments
Web Development for the iPhone
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development View more presentations from estellevw. Web Development for the iPhone: Targeting the iPhone Safari browser Developing for the iPhone Also check out Creating native looking iPhone web apps with … Continue reading
Posted in Browsers, iPhone, Web Development
47 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
JS Variable Scope, HTML5 Web Forms
I just wanted to point out 2 articles I wrote elsewhere that may be of interest to you. JavaScript Variable Scope: Local and Global Variables In writing JavaScript functions, variable functions can trip you up. A common error is overwriting … Continue reading
Posted in Web Development
2 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
@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
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