Neah/node_modules/cssstyle/lib/properties/bottom.js
2025-04-21 17:34:07 +02:00

15 lines
315 B
JavaScript

'use strict';
var parseMeasurement = require('../parsers').parseInheritingMeasurement;
module.exports.definition = {
set: function (v) {
this._setProperty('bottom', parseMeasurement(v));
},
get: function () {
return this.getPropertyValue('bottom');
},
enumerable: true,
configurable: true,
};