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

html.HTMLElement: An add_style method #28

Open
nikochiko opened this issue Feb 27, 2023 · 0 comments
Open

html.HTMLElement: An add_style method #28

nikochiko opened this issue Feb 27, 2023 · 0 comments

Comments

@nikochiko
Copy link
Contributor

An add_style method would be nice to have and much more preferable over the traditional way of modifying the style attribute as a string.

There are two ways this could work:

el = html.div()
el.add_style("width", "100%")

or with keyword arguments,

el = html.div()
el.add_style(width="100%")

The second one is easier to type but might get problematic when dealing with keyword names that are not representable as Python variable names.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant