webdesign
New member
- Joined
- Jul 5, 2012
- Messages
- 229
- Points
- 0
There will be times when you display different IE browsers you will need to create a completely separate form and include it in the web page whenever customers are using Internet Explorer.
Used for IE 7
Code:
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="ie-only.css" />
<![endif]-->
Code:
<!--[if IE 7]>
<link href="IE-7-SPECIFIC.css" rel="stylesheet" type="text/css">
<![endif]-->