As being web-developer, we need to consider our websites must be compatible with every browsers. When I was lack of experiences in Web Developement, some of my websites are ok with only Internet Explorer. In firefox or Opera, the structure of my websites are distortion and awful. That's why I need to do all of my site to be compatible with all browsers whenever I start creating. And, need to do our site can choose appropriate stylesheet up to users' browser. Because we cannot do only one stylesheet file can be compatible to every browser. Here is coding:
2<!--[if IE]>
3<link rel="stylesheet" type="text/css" href="ie_styles.css">
4<![endif]-->
5(For Chrome, firefox so on)
6<!--<![if !IE]>
7<link rel="stylesheet" type="text/css" href="ff_styles.css">
8<![endif]>-->

Android
Top of Page