Is there any equivalent to IE conditional comment for chrome and safari?

前端 未结 4 509
[愿得一人]
[愿得一人] 2020-12-07 02:16

I am wondering if there is any thing which works like ie conditional comment for webkit.

I want to change width.

For example,



';
}
if ($safari) {
echo '';
}

?>




    
you are not using Internet Explorer
'; } if ($msie) { // IE? echo '
you are using Internet Explorer
'; } ?>

From Chrome conditional comments

提交回复
热议问题