Skip to content
On this page

Home > @taiyuuki/utils > dom_set_css

dom_set_css() function

该函数在给定的 HTML 元素上设置 CSS 样式。

Signature:

typescript
declare function dom_set_css(el: HTMLElement, css: Partial<CSSStyleDeclaration>): void;
declare function dom_set_css(el: HTMLElement, css: Partial<CSSStyleDeclaration>): void;

Parameters

ParameterTypeDescription
elHTMLElementHTMLElement - 应用 CSS 样式的 DOM 元素。
cssPartial<CSSStyleDeclaration>css 参数是一个包含 CSS 属性值对作为键值对的对象。

Returns:

void

Released under the MIT License.