• 18-10-2008, 09:56:00
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Merhaba,
    Arkadaşlar Portala haber ekliyorum mesela resim genişliği 400px den fazla ise resmin hem boyu hemde eni küçülsün istiyorum Nasıl yapabilirim
  • 18-10-2008, 11:19:57
    #2
    <img src='resimadi' width='50' height='50'>
    50 olan yerleri kendine göre ayarla..
  • 19-10-2008, 12:53:57
    #3
    css ile halledebilirsin..

    img {
    max-width:400px;
    max-height:300px;
    width: expression(this.width > 400 ? 400: true);
    height: expression(this.height > 300 ? 300: true);
    }