Skip to content

Instantly share code, notes, and snippets.

@mattkenefick
Created August 8, 2014 21:08
Show Gist options
  • Save mattkenefick/36781fed0c9040639660 to your computer and use it in GitHub Desktop.
Save mattkenefick/36781fed0c9040639660 to your computer and use it in GitHub Desktop.
Internet Explorer... I thought you were getting your shit together
/*
from 2 years ago: http://bugs.jqueryui.com/ticket/8844
most things don't work there.
I was testing on Parallels, Windows 8, IE 11.0.9600
Bullets from list items kept showing up on desktop IE 11 and
windows phone 8 IE10 no matter what I did. !important, dynamic
style, etc, didn't work. They always showed up.
Had to use this trick to forcing the bullet points to be a
base64 spacer gif in order for them to go away.
This is some IE 5.5 sadness right here. C'mon guys.
*/
li {
// Must use a transparent spacer gif.
// Setting list-style: none !important; will not work
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
@mattkenefick
Copy link
Author

Note: That thread is from 2 years ago... not my tests. My tests were from today, Aug 8th 2014.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment