我正在使用jquery插件iCheck来设置我的复选框样式。我已成功完成此操作,但现在我无法在同一行上获得复选框和标签。
这是主要代码:
<ul class="facebook-friends">
@foreach ($friends as $friend)
<li>
<div class="facebook_friend">
<input tabindex="1" type="checkbox" name="friend" id="{{$friend}}" value="{{$friend}}">
<label for="{{$friend}}" style="display:block;">
<span class="icon"><a href="http://www.facebook.com/{{ $friend }}"><img src="https://graph.facebook.com/{{ $friend }}/picture" alt="" height="40" width="40"></a></span>
</label>
</div>
</li>
@endforeach
</ul>
CSS:
.facebook_friend {
width:150px;
}
.icon {
width:45px;
}
ul.facebook-friends {
margin:0;
padding:0;
border:0;
overflow:hidden;
*zoom:1;
width:500px;
font-family:'proxima-nova';
font-size:12px;
color:#999
}
ul.facebook-friends li {
list-style-image:none;
list-style-type:none;
margin-left:0;
white-space:normal;
display:inline;
float:left;
padding-left:0px;
margin: 5px;
}
iCheck框渲染如下:
<div class="icheckbox_square-blue" style="position: relative;">
<input tabindex="1" type="checkbox" name="friend" id="3607" value="3607" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; background-color: rgb(255, 255, 255); border: 0px; opacity: 0; background-position: initial initial; background-repeat: initial initial;">
<ins class="iCheck-helper" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; background-color: rgb(255, 255, 255); border: 0px; opacity: 0; background-position: initial initial; background-repeat: initial initial;"></ins>
</div>
我用于复选框标签的图像显示在复选框下面的行上。你有没有看到任何可能导致这种情况的事情?我希望他们排队。我正在使用Laravel 4.
答案 0 :(得分:1)
只需在标签内移动input/checkbox
,例如
<ul>
@foreach ($friends as $friend)
<li>
<div class="facebook_friend">
<label for="{{$friend}}" style="display:block;">
<input tabindex="1" type="checkbox" name="friend" id="{{$friend}}" value="{{$friend}}">
<span class="icon">
<a href="http://www.facebook.com/{{ $friend }}">
<img src="https://graph.facebook.com/{{ $friend }}/picture" alt="" height="40" width="40">
</a>
</span>
</label>
</div>
</li>
@endforeach
</ul>
答案 1 :(得分:0)
你可能错过了一个小错误,
我创建了一个样本fiddle
来解释证明,
只需像这样修改你的代码..
<ul>
@foreach ($friends as $friend)
<li>
<div class="facebook_friend">
<input tabindex="1" type="checkbox" name="friend" id="{{$friend}}" value="{{$friend}}">
<label for="{{$friend}}"> /* Removed display:block here */
<span class="icon"><a href="http://www.facebook.com/{{ $friend }}"><img src="https://graph.facebook.com/{{ $friend }}/picture" alt="" height="40" width="40"></a></span>
</label>
</div>
</li>
@endforeach
</ul>
我已从style="display:block"
标记中移除了label
,这确实是一招,
检查小提示小样本,
编辑:因为这些不能改变可能添加更多样式的样式表,
ul.facebook-friends li {
list-style-image:none;
list-style-type:none;
white-space:normal;
display:inline;
padding-left:0px; /* this was lfet you need to correct it*/
margin: 5px;
margin-left:0; /* this was over ridden by the 5px as it was specified after */
position:relative;
}
编辑2:更新小提琴
我已经更新了小提琴,以验证您的代码fiddle2
,但这里也可以正常工作.. !!
请提供您网页的实时链接以获取进一步的帮助,谢谢
答案 2 :(得分:0)
我已经解决了一个类似的问题,我也希望复选框内联对齐,但我需要右边的文字才能跨越2行,而不会在复选框下方
似乎对齐复选框的诀窍是在其周围放置另一个容器(在我的情况下为<i>
),我将其置于绝对位置,更改默认复选框容器位置会弄乱可点击区域。
<div class="rcb-recent">
<div class="rcb-recent-items">
<!-- ROW -->
<div class="rcb-recent-item">
<i>
<input type="checkbox" class="recent-cb" checked="checked" />
</i>
<span>
<a href="#">1-year Master in International Cooperation & Development</a>
</span>
</div>
<!-- ROW -->
<div class="rcb-recent-item">
<i>
<input type="checkbox" class="recent-cb" checked="checked" />
</i>
<span>
<a href="#">1-year Master in International Cooperation & Development</a>
</span>
</div>
</div>
</div>
CSS
.rcb-recent {
width: 200px
}
.rcb-recent-item {
position: relative;
margin-bottom: 10px
}
.rcb-recent-item i {
position: absolute;
left: 0;
top: 0;
}
.rcb-recent-item span {
display: block;
margin-left: 30px;
}