- Üyelik Tarihi
- 12 Kas 2020
- Konular
- 2,744
- Mesajlar
- 3,095
- Çözümler
- 1
- Beğeniler
- 506
- Puanlar
- 278
- Yaş
- 39
- Web Sitesi
- gsmmob.com.tr

CSS:
/* Resimlere filigran ekleyen CSS */
/* Resim kapsayıcılarına konumlandırma ekleme */
.bbImageWrapper {
position: relative;
display: inline-block;
}
Kod:
/* Resimlere filigran ekleme (ortada çapraz, sade) */
.bbImageWrapper::after {
content: 'gsmmob.com.tr';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-45deg); /* Ortala + Çapraz */
color: rgba(92, 165, 214, 0.3); /* Daha soluk renk */
font-size: 40px; /* Biraz daha büyük yazı */
font-weight: bold;
z-index: 10;
pointer-events: none;
white-space: nowrap; /* Yazının alt satıra geçmesini engeller */
}
Kod:
/* Resim kaydırıcı otomatik boyutlandırma konumlandırma ekleme */
.fancybox__content {
position: relative;
display: inline-block;
}
CSS:
/* Resim kaydırıcı otomatik boyutlandırma filigran ekleme (ortada çapraz, sade) */
.fancybox__content::after {
content: 'GsmGezgini.Com';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-45deg);
color: rgba(92, 165, 214, 0.3);
font-size: 40px;
font-weight: bold;
z-index: 10;
pointer-events: none;
white-space: nowrap;
}
