好的,我有这个代码。
<script>
$(document).ready(function(){
var totalWidth = 0;
$('.thewidgets').each(function(index) {
totalWidth += parseInt($(this).width(), 10);
});
$('#marginwidgets').css({width: totalWidth});
});
</script>
html
<div id="marginwidgets">
<div class="thewidgets">
the widgets 1
</div>
<div class="thewidgets">
the widgets 2
</div>
<div class="thewidgets">
the widgets 3
</div>
</div>
和CSS
#marginwidgets
{
margin: 0px auto;
overflow: auto;
max-width: 100%;
}
.thewidgets
{
width: 284px
padding: 5px;
margin-left: 10px;
}
.thewidgets:first-child
{
margin-left: 0px !important;
}
正如您在脚本中看到的,例程是获取 .thewidgets 的总宽度,然后将其总宽度应用到 #marginwidgets 中,这应该可以完美地集中 #marginwidgets。
但我希望 .thewidgets 的总宽度包括边距和填充,然后将其应用到#marginwidgets 但我不知道如何制作它,这里有人可以弄清楚该怎么做吗?