Related questions
IE crossing out pseudo element CSS?
I've been trying to get a few pseudo elements to work on IE, but it just doesn't let me.
It crosses out the CSS and acts like it's not there, which kinda aggrevates me.
Would anyone know what I'm doing …
View CSS Style sheets in IE11 F12 Developer tools
In previous versions of IE developer tools you were able to open the source of CSS files in the debugger.
This was of most use to verify that they had actually been downloaded / referenced correctly, ie if the request for …
Hide scroll bar, but while still being able to scroll
I want to be able to scroll through the whole page, but without the scrollbar being shown.
In Google Chrome it's:
::-webkit-scrollbar {
display: none;
}
But Mozilla Firefox and Internet Explorer don't seem to work like that.
I also tried this …