<script type="text/javascript">
var isChrome = /Chrome/.test(navigator.userAgent) && /Google
Inc/.test(navigator.vendor);
if (isChrome) {
document.write('<'+'link rel="stylesheet"
href="css/framesmainchrome.css" />');
}
/script>
In above script I got Chrome browser and i can easily apply specific CSS file for chrome browser.
I want to apply another CSS file For Mozilla Firefox browser so modify above script which give the solution for my question.