A utility for converting React CSSProperties and style maps into CSS strings, designed to simplify the management of inline styles in HTML email templates and React projects.
npm install react-style-stringify





A utility for converting React CSSProperties objects or Record into CSS strings.
This utility was originally created to simplify the process of adding inline CSS styles to HTML email templates in a React project. Previously, all styles were written as plain strings, which became unmanageable as the project grew. To make styles more maintainable and consistent, this utility was developed to convert React CSSProperties objects into CSS strings, streamlining the process of embedding styles in the final HTML before sending emails.
- Converts a single CSSProperties object to a CSS string.
- Converts a Record map to a CSS string.
- Automatically adds units (px by default) for numeric values.
- Optionally injects the !important statement for each css declaration.
``bash`
npm install react-style-stringify
or
`bash`
yarn add react-style-stringify
> [!TIP]
> This package uses the CSSProperties type from @types/react.
>
> If you're working with TypeScript and don't use React, install @types/react.
`tsx`
import {
stringifyCSSProperties,
stringifyStyleMap,
} from "react-style-stringify";
`tsx
const cssString = stringifyCSSProperties({
flex: 1,
padding: 20,
backgroundColor: "teal",
});
// Output: "flex:1;padding:20px;background-color:teal;"
const importantCssString = stringifyCSSProperties(
{
flex: 1,
padding: 20,
backgroundColor: "teal",
},
{ important: true } // true in versions <= 1.1.1
);
// Output: "flex:1!important;padding:20px!important;background-color:teal!important;"
const cssStringWtihDefinedUnit = stringifyCSSProperties(
{
padding: 10,
fontSize: 1.6,
},
{
unit: "em",
}
);
// Output: "padding:10em;font-size:1.6em;"
const cssStringWtihDefinedUnitMap = stringifyCSSProperties(
{
padding: 10,
fontSize: 1.6,
},
{
unit: { fontSize: "rem" },
}
);
// Output: "padding:10px;font-size:1.6rem;"
`
> [!WARNING]
> In versions <= 1.1.1, only true was accepted as the second argument.v1.2.0
> As of , the options object { important: true } is recommended.
`tsx`
const cssMapString = stringifyStyleMap({
p: {
margin: 0,
color: "teal",
},
"#root ul.my-list > li": {
padding: 10,
},
});
// Output: "p{margin:0;color:teal;}#root ul.my-list>li{padding:10px;}"
> [!NOTE]
> The options argument is forwarded internally to stringifyCSSProperties, so all options (like important or unit) work the same way.
`ts
import {
stringifyStyleDeclaration,
stringifyStyleRule,
} from "react-style-stringify";
type MyStyle = {
padding: number;
fontSize: number;
};
stringifyStyleDeclaration
padding: 10,
fontSize: 16,
})
// Output: "padding:10px;font-size:16px;"
stringifyStyleRule
".container": {
padding: 10,
fontSize: 16,
},
});
// Output: ".container{"padding:10px;font-size:16px;"}"
`
> [!NOTE]
> The options argument works the same way as for stringifyCSSProperties and stringifyStyleMap.
`ts
type StyleMap = Record
type CSSUnit = "px" | "em" | "rem" | "vw" | "vh" | "%";
type CSSUnitMap
[P in K]?: CSSUnit;
};
type StringifyOptions
important?: boolean;
unit?: CSSUnit | CSSUnitMap
};
type StyleDeclaration = Record
type StyleRule
`
`ts
function stringifyCSSProperties(
cssProperties: CSSProperties,
optionsOrImportant?: StringifyOptions
): string;
function stringifyStyleMap(
styleMap: StyleMap,
optionsOrImportant?: StringifyOptions
): string;
`
`ts
function stringifyStyleDeclaration
styleDeclaration: T,
options?: StringifyOptions
): string;
function stringifyStyleRule
styleRule: StyleRule
options?: StringifyOptions
): string;
`
- @emotion/unitless: Handles checking for CSS properties that are unitless (e.g., line-height, z-index, etc.).
- @types/react: The package uses React's CSSProperties type for defining style objects.
Contributions are welcome! If you have ideas or improvements, feel free to open an issue or submit a pull request.
1. Fork the repository.
2. Create a new branch (git checkout -b feature-name).git commit -am 'Add new feature'
3. Make your changes and commit ().git push origin feature-name`).
4. Push to the branch (
5. Create a pull request.
Please make sure your code adheres to the project's coding standards and passes the existing tests.