Google Chromeでのみ特定のdiv
に次のCSSを適用する方法はありますか?
position:relative;
top:-2px;
CSSソリューション
from https://jeffclayton.wordpress.com/2015/08/10/1279/
/* Chrome, Safari, AND NOW ALSO the Edge Browser and Firefox */
@media and (-webkit-min-device-pixel-ratio:0) {
div{top:10;}
}
/* Chrome 29+ */
@media screen and (-webkit-min-device-pixel-ratio:0)
and (min-resolution:.001dpcm) {
div{top:0;}
}
/* Chrome 22-28 */
@media screen and(-webkit-min-device-pixel-ratio:0) {
.selector {-chrome-:only(;
property:value;
);}
}
JavaScriptソリューション
if (navigator.appVersion.indexOf("Chrome/") != -1) {
// modify button
}
ご存じのように、Chromeは Webkit ブラウザーであり、SafariもWebkitブラウザーであり、Operaでもあるため、メディアクエリまたはCSSハックを使用してGoogle Chromeをターゲットにするのは非常に困難ですが、Javascriptは本当に優れています効果的。
Google Chrome 14以降を対象とするJavascriptコードの一部を次に示します。
var isChrome = !!window.chrome && !!window.chrome.webstore;
以下は、影響を受けるブラウザを含むGoogle chromeの利用可能なブラウザハッキングのリストです。
.selector:not(*:root) {}
@supports (-webkit-appearance:none) {}
Google Chrome 28、およびGoogle Chrome> 28、Opera 14およびOpera> 14
.selector { (;property: value;); }
.selector { [;property: value;]; }
Google Chrome 28、およびGoogle Chrome <28、Opera 14およびOpera> 14、およびSafari 7および7未満- Google Chrome:28 and Before-Safari:7およびBefore-Opera:14以降
var isChromium = !!window.chrome;
var isWebkit = 'WebkitAppearance' in document.documentElement.style;
var isChrome = !!window.chrome && !!window.chrome.webstore;
@media \\0 screen {}
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { .selector {} }
詳細については、 このWebサイト をご覧ください。
chrome> 29およびSafari> 8の更新:
Safariは@supports
機能もサポートするようになりました。つまり、これらのハッキングはSafariでも有効です。
私がお勧めします
@ http://codepen.io/sebilasse/pen/BjMoye
/* Chrome only: */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
p {
color: red;
}
}
これ cssブラウザーセレクターが役立ちます。ご覧ください。
CSS Browser Selectorは、CSSセレクターを強化するたった1行の非常に小さなjavascriptです。これにより、各オペレーティングシステムおよび各ブラウザに特定のCSSコードを記述できます。
http://www.templatemonster.com/help/how-to-create-browser-specific-css-rules-styles.html
セレクターで.selector:not(*:root)
を使用することによってのみ、特定のCSSルールをChromeに適用します。
div {
color: forestgreen;
}
.selector:not(*:root), .div1 {
color: #dd14d5;
}
<div class='div1'>DIV1</div>
<div class='div2'>DIV2</div>
今まで、Chrome専用のCSSハックをしなければならなかったインスタンスに出くわしたことはありません。しかし、私はこれを見つけて、コンテンツをスライドショーの下に移動します:clear:both; Chromeには何も影響しませんでした(ただし、他のどこでも問題なく動作しました-IEでさえも!)。
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Safari and Chrome, if Chrome rule needed */
.container {
margin-top:100px;
}
/* Safari 5+ ONLY */
::i-block-chrome, .container {
margin-top:0px;
}
Chromeは、CSS定義を設定するための独自の条件を提供しません! Chromeはw3c標準で定義されているようなWebサイトを解釈するため、これを行う必要はありません。
したがって、2つの意味のある可能性があります。
私はchromeスタイルにsassミックスインを使用しています。これは、上記のMartin Kristianssonからのソリューションを借りるChrome 29+
のためです。
@mixin chrome-styles {
@media screen and (-webkit-min-device-pixel-ratio:0)
and (min-resolution:.001dpcm) {
@content;
}
}
次のように使用します。
@include chrome-styles {
.header { display: none; }
}
とても簡単。ロード時に2番目のクラスまたはidを要素に追加するだけで、どのブラウザかを指定できます。
基本的にフロントエンドで、ブラウザを検出し、ID /クラスを設定すると、ブラウザ固有の名前タグを使用してCSSが改善されます
/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
/*your rules for chrome*/
#divid{
position:relative;
top:-2px;
}
}
this.itを確認してください。
必要に応じて、特定のbrwoserにクラスを追加できます[フィドルリンク] [1] [1]を参照してください。
var BrowserDetect = {
init: function () {
this.browser = this.searchString(this.dataBrowser) || "Other";
this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "Unknown";
},
searchString: function (data) {
for (var i = 0; i < data.length; i++) {
var dataString = data[i].string;
this.versionSearchString = data[i].subString;
if (dataString.indexOf(data[i].subString) !== -1) {
return data[i].identity;
}
}
},
searchVersion: function (dataString) {
var index = dataString.indexOf(this.versionSearchString);
if (index === -1) {
return;
}
var rv = dataString.indexOf("rv:");
if (this.versionSearchString === "Trident" && rv !== -1) {
return parseFloat(dataString.substring(rv + 3));
} else {
return parseFloat(dataString.substring(index + this.versionSearchString.length + 1));
}
},
dataBrowser: [
{string: navigator.userAgent, subString: "Edge", identity: "MS Edge"},
{string: navigator.userAgent, subString: "MSIE", identity: "Explorer"},
{string: navigator.userAgent, subString: "Trident", identity: "Explorer"},
{string: navigator.userAgent, subString: "Firefox", identity: "Firefox"},
{string: navigator.userAgent, subString: "Opera", identity: "Opera"},
{string: navigator.userAgent, subString: "OPR", identity: "Opera"},
{string: navigator.userAgent, subString: "Chrome", identity: "Chrome"},
{string: navigator.userAgent, subString: "Safari", identity: "Safari"}
]
};
BrowserDetect.init();
var bv= BrowserDetect.browser;
if( bv == "Chrome"){
$("body").addClass("chrome");
}
else if(bv == "MS Edge"){
$("body").addClass("Edge");
}
else if(bv == "Explorer"){
$("body").addClass("ie");
}
else if(bv == "Firefox"){
$("body").addClass("Firefox");
}
$(".relative").click(function(){
$(".oc").toggle('slide', { direction: 'left', mode: 'show' }, 500);
$(".oc1").css({
'width' : '100%',
'margin-left' : '0px',
});
});
.relative {
background-color: red;
height: 30px;
position: relative;
width: 30px;
}
.relative .child {
left: 10px;
position: absolute;
top: 4px;
}
.oc {
background: #ddd none repeat scroll 0 0;
height: 300px;
position: relative;
width: 500px;
float:left;
}
.oc1 {
background: #ddd none repeat scroll 0 0;
height: 300px;
position: relative;
width: 300px;
float:left;
margin-left: 10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<div class="relative">
<span class="child">
○
</span>
</div>
<div class="oc">
<div class="data"> </div>
</div>
<div class="oc1" style="display: block;">
<div class="data"> </div>
</div>