2016-03-20 28 views
0

Firefox.da çalışırken iyi çalışıyorken, Chrome tarayıcısında görüntü yüklemeyle ilgili bir sorunla karşılaştığımda, üstte ve diğer ikisinde de iki düğmeyi yüklemeye ve görüntülemeye çalışıyorum. Aynı kodu aşağıdaki için kullanarak.Google Chrome'da görüntü yükleme ile ilgili sorun.

header { 
    width: 100%; 
    min-height: 4em; 
    background: url(https://mycrm.com/browser/images/CNT2528706.png) no-repeat top right; 
    background-size: cover; 
    border-bottom: thin solid #dedede 
} 

a.button { 
    display: block; 
    min-height: 50px; 
    line-height: 20px; 
    background: #f99752 url(https://mycrm.com/browser/images/CNT2532535.png) no-repeat 5px center; 
    font-size: 13px; 
    color: #fff; 
    padding: 0 10px 0 60px; 
    border-radius: 5px 
} 
+0

Bu resim veya krom ile ilgili bir sorun değil, kopyalanan ve URL'yi yapıştırılan resmi (chrome) teslim ettim ve sitenin ana sayfasına yönlendirildi. Sanırım krom, ana sayfadan bg görüntüsünü alıyor, bu bir görüntü değil. firefox otomatik yeniden yönlendirmeyi önler. Bu arada, – TricksfortheWeb

+0

, gerçekten güzel site :) – TricksfortheWeb

+0

Aslında verdiğim url tam olarak değil. Güvenlik amacıyla örnek URL'yi verdim ve resim konumuyla ilgili bir sorun yok. – user1611498

cevap

0

deneyin bu kod kullanmak:

header { 
    width: 100%; 
    min-height: 4em; 
    background: url("https://mycrm.com/browser/images/CNT2528706.png") no-repeat top right; 
    background-size: cover; 
    border-bottom: thin solid #dedede; 
} 

a.button { 
    display: block; 
    min-height: 50px; 
    line-height: 20px; 
    background: url("https://mycrm.com/browser/images/CNT2532535.png") no-repeat 5px center; 
    font-size: 13px; 
    color: #fff; 
    padding: 0 10px 0 60px; 
    border-radius: 5px; 
} 

Beğen ayrıca, kod çalışmaz başka ; ile sona "" kullanmayı unutmayın: Arka plan: url ("Örnek");

+0

Charles - Ekledikten sonra bile çalışmaz; ve "" önerildiği gibi. – user1611498

+0

user1611498 - Görüntünün bağlantısına gitmeye ve web sitesinin ana sayfasına yönlendirmeye çalışıyorum, Resmi kaydetmeye ve arka planda kullanmaya çalışın: https://mycrm.com/browser/images/CNT2528706.png – CharlesCraft50

+0

Like : arka plan: url ("Resim dosyasının dizini"); – CharlesCraft50

İlgili konular