IE 7 Beta 3 available
March 21st, 2009
IE 7 Beta 3 available
|
|
Internet Explorer 7 Beta 3 has been announced and is now available for download. Features include tabbed browsing, RSS integration, multiple search engines via the built-in search box, and more. Sure, these are all features that Firefox, Safari, etc. have had for a quite some time, but as the old saying goes, better late than pregnant. There are no new CSS features, however; Microsoft has stayed true to their promise that, for better or for worse, as of this March IE 7 was “layout complete.”
Read | Permalink | Email this | Linking Blogs | Comments
Similar Posts
- Firefox 2 beta 1 is now available as a developer preview, for testing purposes only. (I guess that’s a little redundant, isn’t it?) Its features include: support for Javacsript 1.7; inline spell checking in text boxes; and the ability to reopen accidentally-closed tabs (I definitely need that one, with my command-W-happy fingers).
- Opera 9 has been released, with a lot of cool new features. To name just a few, it boasts built-in BitTorrent, thumbnail site preview, and one-click ad blocking. And there’s more, so much more!
- All the cool kids are talking about Flock, with its built-in blog integration and photobar. If that doesn’t have “Web 2.0” written all over it, I don’t know what does.
Interview with Chris Wilson
Vitamin has an interview with Chris Wilson, Group Program Manager of the Internet Explorer Platform team at Microsoft. They’re not calling it a podcast, but I’m going to. (Being a podcaster myself, I’m capable only of speaking in hip web terminology.) At just over 5 minutes, it’s a quick and easy listen.Topics discussed include: the new features of IE 7, Microsoft’s involvement with the Web Standards Project, and the process of updating to IE 7. Chris WIlson’s turn-ons include: RSS, Flickr, and working closely with the web development community.Read | Permalink | Email this | Linking Blogs | Comments
Browser windfall
While we’re on the subject of new browsers…IE 7 via Automatic Updates
According to a post on IEBlog, IE 7 will be distributed via WIndows Automatic Updates. I’m confused now, because in the interview with Chris Wilson that I linked to yesterday, Chris seemed to definitely say that Microsoft won’t go that route in distributing updates. Or maybe when he said “pushing it out” he was referring to something other than Automatic Updates…?
Hmmm…Read | Permalink | Email this | Linking Blogs | Comments
Traveling back to 1996…
The Internet was a bland wasteland in 1996. Just take a look at some of the big corporations sites from 10 years ago. It may be downright painful, but it is a testament to see how far web design has come with the help of CSS. Check out Pepsi’s futuristic web-look. Ah, those were the days…Read | Permalink | Email this | Linking Blogs | CommentsInterview with Håkon Wium Lie
Check out this Slashdot interview with Håkon Wium Lie, the originator of the CSS idea. (Can you believe it’s been over 10 years since CSS was proposed? Time flies when you’re coding with tables!) Lie currently serves as CTO of Opera Software.In the interview, Lie suggests that before releasing IE 7, Microsoft should ensure that the browser passes the Acid2 test and supports TrueType downloadable fonts. He also discusses XML, microformats, Ajax, and (of course) the future of CSS. Read the interview and watch him effortlessly knock down all suggestions that CSS is somehow lacking in capabilities.Read | Permalink | Email this | Linking Blogs | Comments
100 Raw CSS Examples
Looking for examples of CSS in action? Well you have come to the right place. The examples are very crude but function perfectly. Take a peek at the source code to figure out how it was done. There is a lot to look through. Read | Permalink | Email this | Linking Blogs | CommentsMicrosoft.com: a failed redesign
They’ve also released a beta preview of their new new homepage – which you can view only with Internet Explorer. (When I attempted to view the preview site in Firefox, I was simply redirected to the existing homepage.) The preview site appears to use semantic markup, although the source has been compacted down to only a few lines, so it’s nearly impossible to read. And with no Web Developer extension in IE, outlining all block-level elements (or all table cells) isn’t an option.
Funny that with the IE 7 team touting how standards-compliant the new browser will be, the Microsoft homepage flies in the face of standards. (Is that for-real ironic or only Alanis ironic?) Having worked for a few large corporations, I understand that one department’s products can appear to be the antithesis of another department’s, with the worker bees in both departments being none the wiser. Still, this is pretty egregious, given the emphasis Microsoft claims to be placing on web standards.
Although… we’ve been there before with Microsoft, haven’t we? Perhaps these things are cyclical.Read | Permalink | Email this | Linking Blogs | Comments
ClickTale: Watch what your visitors are doing
Analytic services provide valuable stats to web site owners and can be the only way of determining if a design is really working or not with real users. ClickTale hopes to up the ante by recording user actions so you can see every mouse movement, every click, and every scroll. Then the service lets you, the owner, see exactly what the user did. Perfect for testing usability. Currently ClickTale is a closed beta but you can sign up for updates by email. A web 2.0 site that is plum purple? I like it.Read | Permalink | Email this | Linking Blogs | CommentsConditional CSS – not just for IE
It’s true that IE is the most notorious browser for inconsistencies, incompatibilities, and bugs. But the fact remains that no two browsers are created equal, and while IE is the most likely to cause headaches in the course of development, other browsers can be culprits, as well.If you run into a major roadblock, Rafael Lima’s CSS Browser Selector could be your saving grace. A tiny bit of Javascript (less than 1kb!) determines the user’s browser and creates an accordingly-named class. From there, it’s simply a matter of applying the styles that were written for that particular browser. For example:
.ie .example {
background-color: yellow
}
.gecko .example {
background-color: gray
}
.opera .example {
background-color: green
}
.konqueror .example {
background-color: blue
}
.webkit .example {
background-color: black
}
.example {
width: 100px;
height: 100px;
background-color: brown;
} The colored box on the CSS Browser Selector page gets the point across better than anything else, though. Open the page in a few different browsers to see for yourself.
Read | Permalink | Email this | Linking Blogs | Comments
Facelift for sunhome.biz
WebdesignFromScratch.com recently gave sunhome.biz a slick re-design and they documented there thoughts and motivations so everyone can learn. The original design was drab with a large white space in the middle of the page. Also, the original design doesn’t consider the needs of its target audience, senior citizens. The new design is much easier to follow and more pleasing to the eye. Give the article a read to learn the specifics of what they changed and why they did what they did, which is the best way to learn good design.Read | Permalink | Email this | Linking Blogs | Comments