434 B
434 B
title, tags
| title | tags |
|---|---|
| addStyles | browser,beginner |
Adds the provided styles to the given element.
- Use
Object.assign()andElementCSSInlineStyle.styleto merge the providedstylesobject into the style of the given element.
const addStyles = (el, styles) => Object.assign(el.style, styles);
addStyles(document.getElementById('my-element'), {
background: 'red',
color: '#ffff00',
fontSize: '3rem'
});