Tag: Internet Explorer

Is Firefox the World’s Most Vulnerable Browser?

Firefox fans take note: A just-released report from the security company Secunia found that Firefox is far more vulnerable than Opera, Safari, and Internet Explorer — and by a wide margin. In 2008, it had nearly four times as many vulnerabilities as each of those browsers.



Internet Explorer CSS bug fixes

The <!–[if IE]> Tag
Problem: Various sizes, margins and padding attributes can display differently in Internet Explorer, this coded snippet can help you sort out these problems.
Â
Add this code with your required settings underneith your pages <style> or external style link:
<!–[if IE]>
<style>
.item {
margin: 5px;
padding: 10px;
}
</style>
<![EndIf]–>
Â
These [...]