我有一个像这样的图像滑块:
<div class="bx-wrapper" style="width:516px; position:relative;">
<div class="bx-window" style="position:relative; overflow:hidden; width:516px;">
<ul style="width: 999999px; position: relative; left: -516px;">
<li style="width: 129px; float: left; list-style: none outside none; height:68px; margin-top:3px">
<a href="javascript:void(0)" id="p_5">
<img src="question_pliki/5.png" alt="">
</a>
</li>
<!--... many more <li> elements-->
</ul>
</div>
</div>
我想做的是在活动图像上创建一个边框,我有这个JQuery脚本:
$('.bx-window ul li').click(function(){
$(this).parent().find('li').css('border','none');
$(this).css('border','5px solid #f28458');
});
它会在图像外部形成边框,并且会破坏我的布局。
是否可以在图像中创建边框?
答案 0 :(得分:0)
您可以将元素上的box-sizing
更改为border-box
。这将允许边界在里面。
.bx-window ul li {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}