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

  • AmeriiK_HD

    AmeriiK_HD

    16 AĞUSTOS 2012
  • Kat Krazy

    Kat Krazy

    12 Kasım 2010
  • Shon Gonzales

    Shon Gonzale

    5 EKİM 2014