Changed misused words to correct ones (#23256)

Changed "change" to "chance" in line 51 to make sense and "existance" to "existence" in line 51 to correct the spelling.
This commit is contained in:
JacobTBruce
2018-11-23 05:18:21 -05:00
committed by Manish Giri
parent 8df49e4e40
commit fd564a8607

View File

@ -48,7 +48,9 @@ Conditional Comments are only recognized by Internet Explorer Version 5 through
### IE Conditional Comments ### IE Conditional Comments
These comments are only available in Internet Explorer and can be used up to IE9. There is a good chance you will never see them, but it is good to know about their existnace as they do exist on some older sites. Conditional Comments are a way to serve a different experience for different client browsers. For example:
These comments are only available in Internet Explorer and can be used up to IE9. In current times, there is a good chance you will never see them, but it is good to know about their existence as they do exist on some older sites. Conditional Comments are a way to serve a different experience for different client browsers. For example:
```html ```html
<!--[if lt IE 9]> <p>Your browser is lower then IE9</p> <![endif]--> <!--[if lt IE 9]> <p>Your browser is lower then IE9</p> <![endif]-->