Chromeの条件付きコメントなどはありますか?
ChromeでFirefoxと比較して表示が異なるページがあります。
ありがとう
CSSでこれを使用してWebKitベースのブラウザーをターゲットにすることができます
@media screen and (-webkit-min-device-pixel-ratio:0) {
Body {}
}
おそらくこれは役に立ちますか?
<!--[if IE 8]><div id="bodyContainer" class="IE8"><![endif]-->
<!--[if !IE]>--><div id="bodyContainer" class="W3C"><!--<![endif]-->
<script type="text/javascript">
if (navigator.userAgent.toLowerCase().match('chrome') && document.getElementById('bodyContainer'))
document.getElementById('bodyContainer').className = document.getElementById('bodyContainer').className + " chrome";
</script>
次に、CSSを使用してChrome専用のスタイルを調整します。
HTML 条件付きコメント とJavaScript 条件付きコンパイルディレクティブ は、私の知る限りInternet Explorer 4-8でのみサポートされています。
<!--[if !IE]>-->
これは単なるChrome条件付きコメントではありません-これはIE以外のすべてのブラウザーに当てはまります... Firefox、Safariなど。PHP-これを試して:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Browsser Detection</title>
<link rel="stylesheet" href="Main.css" type="text/css">
<?php
$msie = strpos($_SERVER["HTTP_USER_AGENT"], 'MSIE') ? true : false;
$firefox = strpos($_SERVER["HTTP_USER_AGENT"], 'Firefox') ? true : false;
$safari = strpos($_SERVER["HTTP_USER_AGENT"], 'Safari') ? true : false;
$chrome = strpos($_SERVER["HTTP_USER_AGENT"], 'Chrome') ? true : false;
if ($msie) {
echo '
<!--[if IE 7]>
<link rel="stylesheet" href="ie7.css" type="text/css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" href="ie8.css" type="text/css">
<![endif]-->
';
}
if ($safari) {
echo '<link rel="stylesheet" href="safari.css" type="text/css">';
}
?>
</head>
<body>
<br>
<?php
if ($firefox) { //Firefox?
echo 'you are using Firefox!';
}
if ($safari || $chrome) { // Safari?
echo 'you are using a webkit powered browser';
}
if (!$msie) { // Not IE?
echo '<br>you are not using Internet Explorer<br>';
}
if ($msie) { // IE?
echo '<br>you are using Internet Explorer<br>';
}
?>
<br>
</body>
</html>
投稿したジョンのクレジット: http://www.killersites.com/forums/topic/2731/firefox-google-chrome-browser-detecion-using-conditional-comments-hack/
他のブラウザはIf IE8ブロックをHTMLコメントとして解析しますが、!IEブロックはその内部が->および
したがって、IE以外のすべてのブラウザーでは、本体クラスは実際にW3Cと等しくなります。
IEコメントブロックは特にブラウザをchromeとして識別するために必要ではないため、JSブロック自体がもちろん、ユーザーがJSをオンにしている場合に限ります。