将应用转移到phonegap时遇到问题。当我在浏览器中查看网站时看起来很正常,按钮与文本一致(即使我将其调整为我使用的平板电脑的大小),但是当我在手机屏幕上尝试它时它搞砸了。
它看起来如何(stackoverflow不允许我上传图片,我的代表不是10) http://postimg.org/image/k49v615zz/
它应该是什么样子的 http://postimg.org/image/3t6g1a01p/
这两个截图都是在浏览器中截取的,但第一个截图是
display: inline-flex !important;
正如你在prntscr上看到的那样,没有注意到。任何人有类似的问题,任何想法如何解决这个问题?
index.js部分附加有问题的按钮
if(value.countable==true){
$detailList.append("
<div id='countable'>
<span>"+value.detailName+"</span>
<div data-role='controlgroup' data-type='horizontal' data-mini='true'>
<button class='button detailRow qtyminus' id='minus' data-inline='true'>-</button>
<input type='number' class='qty' min='0' inputmode='numeric' pattern='[0-9]*' name=detail."+value.detailId+" id="+value.detailId+" value="+ ((value.quantity == null)? + " 0": value.quantity) +" />
<button class='button detailRow qtyplus' id='plus' data-inline='true'>+</button>
</div>").trigger("create");
}
CSS
#countable {
width:100%;
}
#countable span {
display: inline-block;
width: 19em;
}
#countable div {
display:inline-block;
}
.qty {
position:relative;
float:right;
width: 9em;
height: 3em;
text-align: center;
}
input.qtyplus {
position:relative;
float:right;
width:2em;
height:2em;
}
input.qtyminus {
position:relative;
float:right;
width:2em;
height:2em;
}
.workerRow, .categoryRow, .taskRow {
text-align: left;
}
答案 0 :(得分:0)
在元素中使用%。
CSS
#countable span {
display: inline-block;
width: 60%;
}
.qty {
position:relative;
float:right;
width: 30%;
height: 3em;
text-align: center;
}
input.qtyplus {
position:relative;
float:right;
width:5%;
height:2em;
}
input.qtyminus {
position:relative;
float:right;
width:5%;
height:2em;
}
总元素空间宽度的100%
但是尝试在你的项目中使用它,我将它用于我的所有项目,简单而有效
CSS
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
outline: none;
}
.row:after {
content: '';
display: block;
clear: both;
}
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-2 {
width: 16.66666666666667%;
}
.col-md-3 {
width: 25%;
}
.col-md-4 {
width: 33.33333333333333%;
}
.col-md-5 {
width: 41.66666666666667%;
}
.col-md-6 {
width: 50%;
}
.col-md-7 {
width: 58.33333333333333%;
}
.col-md-8 {
width: 66.66666666666667%;
}
.col-md-9 {
width: 75%;
}
.col-md-10 {
width: 83.33333333333333%;
}
.col-md-11 {
width: 91.66666666666667%;
}
.col-md-12 {
width: 100%;
}
如何使用,很简单。最大尺寸列为12。
E.g
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4"></div>
<div class="col-md-4"></div>
</div>
3列,大小为4 * 3 = 12
要解决您的问题,请使用此
<div class="row">
<div class="col-md-6"></div>
<div class="col-md-1"></div>
<div class="col-md-4"></div>
<div class="col-md-1"></div>
</div>
网格系统很完美,请使用此功能! (小型演示http://jsfiddle.net/dieegov/Bk2gB/1/)