Website/node_modules/cssstyle/lib/properties/marginBottom.js

13 lines
256 B
JavaScript

'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('margin-bottom', v);
},
get: function () {
return this.getPropertyValue('margin-bottom');
},
enumerable: true,
configurable: true
};