What new browser features are available today?

In 2009, Internet Explorer 8 was finally released, and Firefox - up to 3.5. Many of the larger browsers are starting to integrate features from CSS3 and HTML 5, or have been doing this for a long time. Nevertheless, I find myself in the development of web pages in the same way as in 2005.

Since then, great progress has been made, and I think the reason I did not start using these new features is that it is so hard to find out which of the new features work in all major browsers. Since I am the main developer, I simply do not have time to support these developments. However, I feel like I'm missing out on a lot of interesting things that would actually make my life easier.

How can I quickly determine if CSS3 or HTML5 is supported by all major modern browsers?

+7
javascript html css internet-explorer-8 css3
source share
4 answers

Can I use - this is a website that tracks browser support for current and future web standards. Check this if you want to find out if this feature is widely supported.

+13
source share

Insert fonts through CSS using @font-face . Webkit / Safari supports it since version 3.1, Microsoft with IE4, Mozilla with Firefox 3.5 ( browser support overview ).

In addition, there are a variety of implementations of the Selectors API , which provides a mechanism for selecting a CSS selector for use in DOM scripts.

For other examples, when I can use ... , it seems to be a very good recommendation.

+3
source share

Browser support for local storage should now include a bunch of new ideas that can be stored on the user's computer.

Reference documents:

+1
source share

I would say that display: table and a number of CSS2.1 selectors are big victories for designers. display: table allows some unsolvable or complex layouts, such as 100% height and internal borders, without breaking semantics or using actual tables.

Multiple Classes (.c1.c2)

I am using min / max-width / height.

Also works: freezing and! amazing are important.

I would like to add SVG support to this list, but naturally Microsoft messed it up.

BTW, a great warning to those who worry about HTML5 features. There is no official date for the adoption of this specification. It was even implied that it could take another 10 years (although I doubt it). The fact is that everything you do with HTML5 is now subject to breakdown when the official specification really arrives, and in the meantime you can expect a lot of browser inconsistencies, errors and API changes (not to mention browsers that don't support functions at all) .

+1
source share

All Articles