我正在開發一個使用Phonegap的測驗應用程序,因此HTML,JavaScript & CSS - 沒有其他框架。我的問題是,複選框在Android設備上顯示得非常小。我嘗試在我的CSS中設置寬度爲&的輸入高度[type = checkbox]爲2em,這適用於Chrome和模擬器,但不適用於實際設備(使用Samsung S4 Mini & Asus TF101進行測試)。增加複選框大小 - Phonegap Android
複選框被使用無序列表中 - 這裏的HTML:
<div class="challenge">
<ul>
<li><label for="opt0"><input type="checkbox" id="opt0" value="right">Answer A</label></li>
<li><label for="opt1"><input type="checkbox" id="opt1" value="wrong">Answer B</label></li>
</ul>
</div>
而這裏的相關CSS:
body {
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
font-family: arial;
background-color:white;
height: 100%;
width: 100%;
padding: 0;
margin: 0;
font-size: medium;
font-size: 1.5em;
}
.savvy_app {
position: absolute;
overflow: auto;
margin: 0;
padding: 10px 5px 0 5px;
top: 73px;
bottom: 2px;
max-width: 100%;
min-width: 98%;
}
input[type=checkbox] {
width: 2em;
height: 2em;
}
.challenge ul {
list-style-type: none;
padding-left: 10px;
}
.challenge ul li, .results ul li {
font-family: georgia;
font-weight: normal;
position: relative;
border: none;
margin-bottom: 5px;
padding-bottom: 0;
}
.challenge label, .results label {
display: block;
padding-left: 50px;
padding-top: 5px;
}
.challenge input, .results input {
display: inline;
margin-left: -50px;
position: absolute;
}
我缺少什麼?
嘗試添加'-webkit-appearance:none;'爲複選框 – 2014-10-05 17:57:28
不,我需要顯示覆選框以允許用戶選擇可能的測驗答案。問題是多種選擇,並有不止一個答案。 – 2014-10-05 18:13:26