問卷調查頁面.html
點擊查看代碼
```手機移動支付業務問卷調查
點擊查看代碼
body {
background-color:#CCCCCC;/*設置頁面背景色為淺灰色*/
}
/*問卷面板樣式*/
#questionnaire{
background-color:white;
padding:15px;
margin: auto;
width:900px;
text-align:center;
font-family:"微軟雅黑";
box-shadow: 10px 10px 15px black;
}
/*標題樣式*/
h1{
color:orange;
}
/*水平線樣式*/
hr{
width:80%;
border:orange 1px solid;
margin-bottom:15px;
}
/*表單樣式*/
form{
text-align:left;
width:80%;
margin:auto;
}
/*列表選項樣式*/
li{
margin:10px 0;
}
/*輸入表單樣式*/
input{
margin:10px;
}
/*輸入表單樣式*/
input[type="text"],input[type="tel"]{
width:130px;
height:20px;
font-size:16px;
font-family:"微軟雅黑";
border:0px;
border-bottom:1px solid;
outline:none;
}
/*按鈕外區域div元素樣式*/
#btn{
text-align:center;
}
/*按鈕樣式*/
button{
width:120px;
height:40px;
background-color:orange;
border:0px;
color: white;
margin:10px;
font-size:18px;
font-family:"微軟雅黑";
font-weight:bold;
}
/*鼠標懸浮時按鈕樣式*/
button:hover{
background-color:#FF6835;
}