Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Social
Twitter
My Speaking Engagements
Stackoverflow
Linked In
YouTube
Win8at8
Places I Write
Ubelly.com
UK MSDN Team
Subscribe via RSS
Blog Home
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
thebeebs - html5at5
Also known as Martin Beeby, I am a web developer and work for Microsoft as a developer evangelist.
Everyday weekday at 5pm I answer questions or give tips on HTML5 development. If you have a question just use the #html5at5 tag on twitter
thebeebs
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
thebeebs
How do you stop element breaking inside a CSS3 multi column layout
Posted
3 months ago
by
thebeebs
0
Comments
I came across a rather annoying feature today when I was trying to create a layout with CSS3 multi column . I wanted to stack some divs on top of each other in columns. My first attempt lead to this, which was not what I wanted: I wanted the tile’s to...
thebeebs
Error.stack
Posted
11 months ago
by
thebeebs
0
Comments
In the statically typed code world I used to inhabit Call stacks were often used to diagnose the root cause of events. I wasn’t aware that JavaScript had a similar (albeit non ECMA5) way of performing error stack interrogation. It’s called Error.stack...
thebeebs
Reading Minified JavaScript
Posted
11 months ago
by
thebeebs
1
Comments
If you have viewed source on any website in the last few years then you will have certainly seen Minified JavaScript. This is JavaScript where all of the whitespace and unnecessary characters have been removed. Developers do this because it reduces the...
thebeebs
Request Animation Frame is your friend
Posted
11 months ago
by
thebeebs
0
Comments
If you are writing anything in JavaScript that animate then you are probably more than familiar with setInterval and setTimeout . These are both useful tools to create timing loops. However, when it comes to creating animations they are both pretty inefficient...
thebeebs
Fonts Numerals
Posted
over 1 year ago
by
thebeebs
0
Comments
The IE test drive website has some new demos that show the use of OpenType font features . Over the next few weeks I thought I’d take a look at each of the different features in turn. OpenType is a technology that is supported by IE10 and Firefox 4+ allows...
thebeebs
CSS3 vendor Prefixes and a nice box sizing tool
Posted
over 1 year ago
by
thebeebs
0
Comments
Chris Coyier tweeted last night about a CSS3 tool called box-shadow.info. If you're gonna make a CSS3 helper app thingy, do like box-shadow.info and help people understand prefixes/compatibility. — Chris Coyier (@chriscoyier) March 5, 2012 It’s a great...
thebeebs
Fonts and Small Caps
Posted
over 1 year ago
by
thebeebs
0
Comments
The IE test drive website has some new demos that show the use of OpenType font features . Over the next few weeks I thought I’d take a look at each of the different features in turn. OpenType is a technology that is supported by IE10 and Firefox 4+ allows...
thebeebs
Fonts and Ligatures
Posted
over 1 year ago
by
thebeebs
0
Comments
I just noticed that the IE test drive website has some new demos that show the use of OpenType font features . Over the next few weeks I thought I’d take a look at each of the different features in turn. OpenType is a technology that is supported by IE10...
thebeebs
Media Queries and Bandwidth
Posted
over 1 year ago
by
thebeebs
0
Comments
I just read a blog post that stated that media Queries were not a good idea because: your entire stylesheet , with resources, images, the works – for all viewports - is loaded, before the @media stuff is parsed by the browser. This isn’t entirely true...
thebeebs
Overlaying data on a video
Posted
over 1 year ago
by
thebeebs
0
Comments
I got asked by Gordon Rae on twitter today: @ thebeebs Martin, can you recommend a good tutorial for overlaying data on video in HTML5 ? — Gordon Rae (@socialtechno) February 21, 2012 Firstly beware that just because a browser supports HTML5 video it...
thebeebs
Gradients in Internet Explorer
Posted
over 1 year ago
by
thebeebs
0
Comments
Last week at the digital barn I gave a talk called “The Way the web should be” in it I talked about the importance of Web Standards in the development of IE. In a follow up blog post Ian Parr made an interesting point: One point that I think MS people...
thebeebs
Using App Cache
Posted
over 1 year ago
by
thebeebs
2
Comments
There are many new features in HTML5 but in think that App Cache is potentially one of the most important. App Cache allows you to create a manifest file that details all of the files your application uses offline. When you visit your website with no...
thebeebs
A look at the new CSS3 units of measure
Posted
over 1 year ago
by
thebeebs
0
Comments
So if you have been developing for any length of time then you are probably familiar with ‘em’, ‘%’and ‘px’ as units of measurements in CSS. As part of the CSS3 specification there are a few new units of measurement that I think are worth casting...
thebeebs
Why Don't you need to close tags in HTML5?
Posted
over 1 year ago
by
thebeebs
10
Comments
HTML5 is a much more forgiving when it comes to Mark-up than XHTML. With XHTML you needed to make sure that each opening HTML tag had it’s own closing tag. So you would always close an image tag like this: <img alt="A pretty car" src="image.jpg" />...
thebeebs
I want to use Canvas but need to support IE8
Posted
over 1 year ago
by
thebeebs
1
Comments
Ok so you have a great idea for how you’re going to use Canvas in your next application… problem is you still have tons of visitors that use IE8 (which doesn't support the Canvas element). Not to worry, all is not lost. In many instances you can use something...
thebeebs
How to build Mobile websites
Posted
over 1 year ago
by
thebeebs
0
Comments
With the explosion of devices that access websites , it's becoming more important that your website works well on mobile devices. I found the process of learning how to create websites that worked on mobile devices confusing so I created the list below...
thebeebs
How to write a feature detection script in JavaScript
Posted
over 1 year ago
by
thebeebs
2
Comments
When I use a HTML5 feature in my website I will often test the browser that is visiting to see if it is capable of using the feature. If it is not capable I will Fall-back to something that the browser is a capable of supporting. In practice, I use modernizr...
thebeebs
Using HTML5 to Jump to the search box using autofocus
Posted
over 1 year ago
by
thebeebs
0
Comments
Autofocus is a HTML5 attribute that you add to input elements, which cause the browser to automatically focus on the input element when the page loads. Google and every other search engine have been doing this since the dawn of time (slight exaggeration...
thebeebs
Do I need to use WIA-ARIA with HTML5?
Posted
over 1 year ago
by
thebeebs
0
Comments
Accessibility for Rich Intranet Applications ( WIA-ARIA ) is a specification that makes it easier for people using screen readers to navigate and use web applications. Many of the new HTML5 elements like section and article have been added to the specification...
thebeebs
Making forms easier to fill out using placeholder text
Posted
over 1 year ago
by
thebeebs
0
Comments
Placeholder is a HTML5 attribute that you add to input elements, it makes it easier for users to fill out your forms. Demo view here Source on GitHub It works for on regular input fields but also works on on password types. Of course the placeholder tag...
thebeebs
Using CSS3 to make your web pages better when they are printed.
Posted
over 1 year ago
by
thebeebs
3
Comments
I recently walked past someone in the office who was reading a web article that they’d printed off. Now putting to one-side the environmental impact of printing the internet there is also another disadvantage to reading printed webpages… the hyperlinks...
thebeebs
How you can allow a user to edit pages with HTML5
Posted
over 1 year ago
by
thebeebs
0
Comments
When a user wants to change some information on a webpage it's often very jarring to ask them to go to another form to edit the content. Users find it difficult to understand how the changes they make on a form will effect the resultant page. Therefore...
thebeebs
Saving user preferences with HTML5
Posted
over 1 year ago
by
thebeebs
0
Comments
If you have played with the HTML5 version of the cut the rope, you will notice that it remembers your scores for each game when you return to the site. To achieve this in your own applications you can use localStorage which is part of the Web Storage...
thebeebs
Vendor Prefixes and JavaScript
Posted
over 1 year ago
by
thebeebs
0
Comments
I got asked a question recently on twitter from Seb Lee-Delisle about vendor Prefixes and JavaScript. He asked: is the JS equivalent of -ms-transform MSTransform? or msTransform? The answer to the question is msTransform. However, the question opens up...
thebeebs
Why is Canvas so slow for Text?
Posted
over 1 year ago
by
thebeebs
0
Comments
During the launch of IE9 I was asked to produce a HTML5 application that animated stitching tweets on to a canvas. During testing the application I had some really complex animations and they performed just fine, but when I added test using Text API the...
Page 1 of 2 (42 items)
1
2