SORU
11 HAZİRAN 2013, Salı


Nasıl stil ve CSS ile gönder düğmesi?

CSS öğreniyorum. Nasıl stil ve CSS ile gönder düğmesi?

Böyle bir şey oluşturmak çalışıyorum ama nasıl olacak hiç bir fikrim yok

<form action="#" method="post">
    Name <input type="text" placeholder="First name"/>
    <input type="text" placeholder="Last name"/>
    Email <input type="text"/>
    Message <input type="textarea"/>
    <input type="submit" value="Send"/>
</form>

enter image description here

CEVAP
11 HAZİRAN 2013, Salı


http://jsfiddle.net/vfUvZ/

İşte başlangıç noktası

CSS:

input[type=text] {padding:5px; border:2px solid #ccc; 
-webkit-border-radius: 5px;
border-radius: 5px;
}
input[type=text]:focus {border-color:#333; }

input[type=submit] {padding:5px 15px; background:#ccc; border:0 none;
cursor:pointer;
-webkit-border-radius: 5px;
border-radius: 5px; }

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • David MeShow

    David MeShow

    10 EKİM 2006
  • GavinMichaelBooth

    GavinMichael

    26 AĞUSTOS 2006
  • Trevor Eckhart

    Trevor Eckha

    19 Aralık 2009