-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dropdown arrow/caret not rendering properly in IE9 #16203
Comments
Potentially related to #16172. |
Thanks for your replies... don't know exactly what has changed in the meantime, but I've tried again this morning and the problem was disappeared :-) |
I have the same problem with IE 11 but it depends on browser width. You can find a example with a width of 1280 pixels : When I reduce the window to 1133 pixels, the problem disappears : If I revert the fix for issue #15682 then the caret arrow isn't splitted anymore. |
FWIW can't reproduce either (even tried setting monitor resolution to different sizes, and turning cleartype on/off) - [edit: i should add this was on Windows 8.1) |
Seems to work fine here too. |
Maybe the problem occurs because I'm using IE11 through an RDP connection. I'll give it a try in two weeks (i'm currently on vacation). |
That could indeed be part of the issue ... I've seen some similar problems before with screen resolutions that aren't completely matching native screens, and some browsers then simply dropping a 1px line or mysteriously reintroducing a 1px gap somewhere) |
I wonder if that has any side effects. If not, it seems like a good
|
I mean we set height: 0 for caret; there must be some reason for this.
|
The problem recurred today. For page zoom % set at 100% is looks fine but it starts rendering incorrectly at 105%. I did, however, notice that the CSS class for caret had a dashed border top. .caret {
...
border-top: 4px dashed;
...
} Changing it to a solid border fixed the issue for me today and I reset the height to 0px. Although, it's weird that this happened only on IE. The caret looks fine on Firefox and Chrome before and after I made the change. .caret {
...
border-top: 4px solid;
...
} Was there a reason to use a dashed background for creating the triangle and do you see and side effects that could stem from this? |
If that PR fixed the issue, then I agree about zooming, it isn't important
|
I've noticed that the little arrow of dropdown menus in Bootstrap's navbar doesn't render properly in InternetExplorer 9 (Windows Vista)...
Have a look to the screenshot below:
from the official Bootstrap's example page:
http://getbootstrap.com/examples/theme/http://getbootstrap.com/examples/sticky-footer-navbar/
Anyone experimenting the same weird thing ? Any way to adjust it ?
Thanks
The text was updated successfully, but these errors were encountered: