我設計了一個非常酷的外觀佈局,但沒有線索如何使它的收音機工作!下面是這個表格的模型: 我已經爲文本輸入創建了CSS(並且將在下面爲其他尋找類似的東西的人添加它)。我現在需要弄清楚的是「你在找什麼服務?」部分。我已經爲藍框編寫了CSS,但是現在我需要弄清楚如何將「諮詢,Web開發和圖形設計」轉變爲無線電選擇,其旁邊帶有複選標記的選擇框是選定的無線電框。超過我的頭。我仍然試圖弄清楚,如果我這樣做會回來的。只是尋找一些關於你如何寫這些無線電的輸入。CSS挑戰:自定義廣播選擇
文本輸入電流代碼:
input[type=text] {
width: 365px;
height: 54px;
margin: 0 0 12px 0;
padding: 0 0 0 25px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background: #a2bdd8;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #76899d), color-stop(0.075, #a2bdd8));
color: #fff;
font-size: 30px;
border: none;
}
*:focus { outline: none; }
當前代碼爲背景,以「你在找什麼樣的服務?」:
#options {
width: 270px;
height: 120px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background: #a2bdd8;
}
可能相關:http://stackoverflow.com/questions/5112995/is-there-an-easy-way-to-replace-radio-button-with-images-and-a-colored-border-fo – Blender 2011-04-25 01:44:48