Main Layout Explanation

Hi

Could someone tell me what is this for in protected\views\layouts\main.php


<!--[if lt IE 8]>

	<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/ie.css" media="screen, projection" />

	<![endif]-->



and how it impacts on my web application.

Many thanks.

Cheers.

its an html tag basically telling you where this can be applied in screen thats computer screens and projection for projectors…




if (browser is Internet Explorer and version < <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

{

    if (display is screen OR display is projector)

    {

        apply the ie.css stylesheet

    }

}