// 6. The string "inherits:", followed by a single SPACE (U+0020).
// 7. For the rule’s inherits attribute, one of the following depending on the attribute’s value:
// true: The string "true" followed by a single SEMICOLON (U+003B), followed by a SPACE (U+0020).
// false: The string "false" followed by a single SEMICOLON (U+003B), followed by a SPACE (U+0020).
builder.appendff("inherits: {}; ",inherits());
// 8. If the rule’s initial-value is present, follow these substeps:
if(initial_value().has_value()){
// 1. The string "initial-value:".
// 2. The result of performing serialize a CSS value in the rule’s initial-value followed by a single SEMICOLON (U+003B), followed by a SPACE (U+0020).
// FIXME: Follow the spec for serializing the value whenever we actually have a CSS value here.