2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.addStyleTag
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.addStyleTag() method
|
|
|
|
|
|
|
|
Adds a `<link rel="stylesheet">` tag into the page with the desired url or a `<style type="text/css">` tag with the content.
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
2022-08-10 21:34:29 +00:00
|
|
|
addStyleTag(
|
|
|
|
options: FrameAddStyleTagOptions
|
|
|
|
): Promise<ElementHandle<HTMLStyleElement | HTMLLinkElement>>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-08-10 21:34:29 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ----------------------------------------------------------------- | --------------------------- |
|
|
|
|
| options | [FrameAddStyleTagOptions](./puppeteer.frameaddstyletagoptions.md) | Options for the style link. |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2022-08-10 21:34:29 +00:00
|
|
|
Promise<[ElementHandle](./puppeteer.elementhandle.md)<HTMLStyleElement \| HTMLLinkElement>>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
a promise that resolves to the added tag when the stylesheets's `onload` event fires or when the CSS content was injected into the frame.
|