Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(dom/css): fix text #273

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/dom/css.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ myStyleSheet instanceof StyleSheet // true

注意,`disabled`属性只能在 JavaScript 脚本中设置,不能在 HTML 语句中设置。

**(2)Stylesheet.href**
**(2)StyleSheet.href**

`Stylesheet.href`返回样式表的网址。对于内嵌样式表,该属性返回`null`。该属性只读。
`StyleSheet.href`返回样式表的网址。对于内嵌样式表,该属性返回`null`。该属性只读。

```javascript
document.styleSheets[0].href
Expand Down