diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f8e392409..96b1945535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ### HEAD +* Remove IE 6/7 hacks from `main.css`. * Update to Normalize.css 2.1.3. * Remove IE conditional classes ([#1290](https://github.com/h5bp/html5-boilerplate/issues/1290), [#1187](https://github.com/h5bp/html5-boilerplate/issues/1187])). diff --git a/README.md b/README.md index 55830a7700..a70a08cc33 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Choose one of the following options: ## Features * HTML5 ready. Use the new elements with confidence. -* Cross-browser compatible (Chrome, Opera, Safari, Firefox 3.6+, IE6+). +* Cross-browser compatible (Chrome, Firefox, IE8+, Opera, Safari). * Designed with progressive enhancement in mind. * Includes [Normalize.css](http://necolas.github.com/normalize.css/) for CSS normalizations and common bug fixes. @@ -38,7 +38,7 @@ Choose one of the following options: * Useful CSS helpers. * Default print CSS, performance optimized. * Protection against any stray `console.log` causing JavaScript errors in - IE6/7. + older browsers. * An optimized Google Analytics snippet. * Apache server caching, compression, and other configuration defaults for Grade-A performance. diff --git a/doc/extend.md b/doc/extend.md index 63ce995ed3..132dd28132 100644 --- a/doc/extend.md +++ b/doc/extend.md @@ -259,15 +259,6 @@ value is boolean rather than a color. It's all or nothing. You can read about this useful element and more techniques in [Microsoft's documentation on adapting WebKit-oriented apps for IE10](http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10.aspx). -### Suppress IE6 image toolbar - -Kill IE6's pop-up-on-mouseover toolbar for images that can interfere with -certain designs and be pretty distracting in general. - -```html - -``` - ## Social Networks diff --git a/doc/html.md b/doc/html.md index a565f73623..d37c118779 100644 --- a/doc/html.md +++ b/doc/html.md @@ -100,11 +100,11 @@ The central part of the boilerplate template is pretty much empty. This is intentional, in order to make the boilerplate suitable for both web page and web app development. -### Browserhappy Promt +### BrowseHappy Promt The main content area of the boilerplate includes a prompt to install an up to -date browser for users of IE 6. If you intended to support IE 6, then you should -remove the snippet of code. +date browser for users of IE 6/7. If you intended to support IE 6/7, then you +should remove the snippet of code. ### Google CDN for jQuery diff --git a/doc/usage.md b/doc/usage.md index df54996b0f..270a171f01 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -10,8 +10,7 @@ usually involves the following: 2. Add some content, style, and functionality. 3. Run your site locally to see how it looks. 4. (Optionally run a build script to automate the optimization of your site - - e.g. [ant build script](https://github.com/h5bp/ant-build-script) or [node - build script](https://github.com/h5bp/node-build-script)). + e.g. [ant build script](https://github.com/h5bp/ant-build-script)) 5. Deploy your site.