The Internet Explorer team revamped developer tools in version 11 of the browser, completely updating its design and features and adding performance tools for Responsiveness and Memory, as well as a new Emulation tool that lets you see your site on various screen sizes and Internet Explorer versions.
Internet Explorer system requirements
- A Windows 8.1 or Windows RT 8.1 PC.
- Processor. 1 gigahertz (GHz) or faster with support for PAE, NX, and SSE2.
- RAM. 1 gigabyte (GB) (32-bit) or 2 GB (64-bit)
- Hard disk space. 16 GB (32-bit) or 20 GB (64-bit)
- Graphics card. Microsoft DirectX 9 graphics device with WDDM driver.
- Internet access (ISP fees might apply
How To Write CSS Only For Internet Explorer 11?
Use a combination of Microsoft specific CSS rules to filter IE11:
@media all and (-ms-high-contrast:none)
<style>
@media all and (-ms-high-contrast:none)
{
span{ color: green }
}
</style>