Skip to content

Commit 8676980

Browse files
committed
Minor README fixes and added testing FAQ
1 parent 6b864d8 commit 8676980

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Bootstrap 4 drops support for Internet Explorer 8 and 9, but you can add it back
2222
<![endif]-->
2323
```
2424

25-
2625
### FAQS
2726

2827
**Q. What does this fix/polyfill?**
@@ -36,9 +35,9 @@ A. This doesn't include any IE7-specific fixes, but it should make it look more
3635
**Q. Is the CSS hosted on a CDN?**
3736

3837
A. Yes, thanks to [JSDelivr](https://www.jsdelivr.com/package/gh/coliff/bootstrap-ie8?path=css) minified versions are available with the direct links:
39-
38+
4039
https://cdn.jsdelivr.net/gh/coliff/bootstrap-ie8/css/bootstrap-ie8.min.css
41-
40+
4241
https://cdn.jsdelivr.net/gh/coliff/bootstrap-ie8/css/bootstrap-ie9.min.css
4342

4443
**Q. Why is the JavaScript completely broken on IE8?**
@@ -57,6 +56,10 @@ A. No. Instead the CSS is set to be fixed-width which makes things a lot easier.
5756

5857
A. Right here: [https://coliff.github.io/bootstrap-ie8/test.htm](https://coliff.github.io/bootstrap-ie8/test.htm)
5958

59+
**Q. I don't have access to IE8/IE9 browser to test- how can I see how my site appears?**
60+
61+
A. You could use my free [Multi-Browser Screenshots Chrome Extension](https://chrome.google.com/webstore/detail/multi-browser-screenshots/dhaknibfbngnmflbejdkliedmjmbjojk) to see screenshots of any webpage.
62+
6063
### Known Issues
6164

6265
- As this is only a CSS stylesheet there are problems with using Bootstrap 4's JavaScript in IE8. An easy workaround is to include a link to the Bootstrap v3 JS file (this fixes the dropdown menus) within the conditional statement. Be sure to use jQuery 1.x too.

test.htm

+6-4
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
left: auto;
2323
bottom: auto;
2424
z-index: 1;
25-
display: block
25+
display: block;
2626
}
2727

2828
.bs-component .modal-dialog {
29-
width: 90%
29+
width: 90%;
3030
}
3131

3232
.bs-docs-section {
33-
margin-bottom: 50px
33+
margin-bottom: 50px;
3434
}
3535

3636
.example,
@@ -452,7 +452,9 @@ <h2>Example body text</h2>
452452
<p>An abbreviation of the word attribute is
453453
<abbr title="attribute">attr</abbr>.</p>
454454
<p class="text-black-50">This is text-black-50</p>
455-
<p class="text-white-50 bg-dark">This is text-white-50</p>
455+
<span class="bg-dark">
456+
<p class="text-white-50">This is text-white-50</p>
457+
</span>
456458
</div>
457459

458460
</div>

0 commit comments

Comments
 (0)