如何将左边距和右边距添加到 php 元素中


How can I add margin-left and margin-right to an php-element

我想为这个元素添加左边距和右边距。有人可以帮我吗?

this.$list.css( 'width', 100 * this.itemsCount + '%' );

我认为这应该是一个jquery问题,但是...

css() 可以将对象作为参数,因此请尝试...

this.$list.css({
  'width': 100 * this.itemsCount + '%',
  'margin-left': '10px',
  'margin-right': '10px'
});