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

13 lines
258 B
JavaScript

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