我正在使用 Bootstrap 的响应式网格布局。我需要调整页面上的一个点,使两列之间没有边距;左栏有一个底部边框,我需要将其右移到右栏的左边框。
如何扩展 div 以补偿删除右边界 div 的左边距?
我已经能够做的事情:
- 我可以动态设置左侧 div 的高度,以将底部边框放到我想要的位置:
$('#indented_block .border-bottom').height( $('#indented_block').height()-3 );
- 我能够确定左 div 的原始宽度:
$('#indented_block .border-bottom').width()
- 我能够确定右 div 的左边距:
$('#indented_block .border-side').css('margin-left');
- 我可以设置右 div 的左边距:
$('#indented_block .border-side').css('margin-left',0);
我无法使用 jQuery.width()
方法将原始宽度添加到左边距:$('#indented_block .border-bottom').width( $('#indented_block .border-bottom').width()+$('#indented_block .border-side').css('margin-left'));
相反,我无法准确地将这些值加在一起(由于某种原因,上面的行将宽度设置为大约屏幕)。