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

13 lines
250 B
JavaScript

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