-
This page lists errata from the book (hopefully not too much!), changes to the specifications since publication, and brand new features.
Categories
Firefox 15 should see changes to the border-image syntax to keep it in line with the latest version of the spec. There are four key changes: first, all of the individual border-image-* properties are supported. They are: border-image-source, border-image-slice, border-image-width, border-image-outset, and border-image-repeat. The border-image property is now a shorthand for all of those.
The second key change is that the centre of the image is not shown by default; in order to fill in the image, you have to use the fill keyword with border-image-slice, e.g.:
E { border-image-slice: 10 fill; }
Third, specificity of the border property is now important; if the border property is set to none and has higher specificity, border-image won’t apply.
Fourth and finally, all of the properties have been unprefixed.
The examples in Chapter 9 have been updated to reflect these changes. In Example 09–07 I’ve added an extra box to show the individual properties, and also the fill keyword noted above.
— 20 July, 2012