Home > Article > Web Front-end > Compatibility testing, web design tool recommendations
Compatibility Test Tool
Lightweight(1) Notepad++ (2)sublime Text
(3) Notepad
Heavyweight
(1) webStorm (2) Dreamweaver
How to judge IE(1) Conditional judgment format:
(2) Not equal to: Except for IE8, it can display
[if !IE 8]
(3) Less than: If the IE browser is less than 5.5, it will display
[if lt IE 5.5]
(4) Greater than: If the IE browser is greater than 5, it will display
[if gt IE 5.5]
(5) Greater than or equal to:
[if gte IE 7]
(6) Between greater than and less than:
[if(gt IE 5)&(lt IE 7)]
(7) or:
[if(IE 6)|(IE 7)]
(8) Only:
The above is the detailed content of Compatibility testing, web design tool recommendations. For more information, please follow other related articles on the PHP Chinese website!