Masaaa - The Kenyan Online Magazine |
![]() |
| First Kenyan Community Portal.You will be able to- Form your own community links with your friends Kenya- Get the latest Kenyan news that means something to you.- Create your own news articles.
- Add and view other Kenyan Blogs as they are updated. - Discuss and Comment on all Kenyan News - View business profiles of Kenyans. |
RG Floors Commercial Carpet & Vinyl Specialists |
![]() |
| RG Floors is based in Melbourne’s South East suburbs and can effectively service all of Melbourne metropolitan and greater regional Victoria commercial market needs. Our team works with clients from the initial site inspection and quoting, project managing the installation through the completion of the job to deliver the Maintenance & Warranty Packs. |
Which is the proper way to hide information from Internet Explorer? While many CSS filters and hacks rely on using advanced selectors that IE 6 and below don’t recognize, that is not going to be the case for Internet Explorer 7.
So the proper way to hide information from Internet Explorer would be to use something similar to the code below.
Note: the last line of this method may result in validation errors.
><!--[if gte IE 7]>
<link rel=”stylesheet” type=”text/css” href=”ie-hacks.css”
media=”screen” />
<![endif]–>
Likewise, down-level comments may be used to filter scripts, markup, or just about anything.
In this case, a JavaScript file is hidden from all IE less than IE7:
<!--[if gte IE 7]>
<script src=”http://domain.com/javascript.js”
type=”text/javascript”></script>
<![endif]–>
This example shows CSS hidden from any IE strictly less than IE6.0:
<!--[if gte IE 6.0]>
<style type=”text/css”>h1 { color: red }</style>
<![endif]–>
Make sure
1)That the first call is simply a link to an overall styles.css file. This file will hold all the CSS for whole site, for all browsers.
2)That when taking care of the differences, you do not need to overwrite the entire rule, only those properties that need to change.

