βοΈCSS
Paste CSS into Webstudio, and it'll be translated to the various fields in the Style Panel.
CSS is the design language of the internet. With this feature, you can copy CSS from anywhere and paste it into Webstudio, which will parse it and populate the various fields in the Style Panel.
How to paste CSS

Copy CSS declaration(s) such as
background: blue;.In Webstudio, go to the Style Panel > Advanced > and click "+".
Paste the CSS and press enter.
That's it.
The styles are parsed and displayed in their respective fields (they will also be shown in the Advanced section).
Use cases
Third-party libraries like Open Props provide expertly crafted CSS variables, allowing you to import them via paste.
Custom stylesheets containing Design Systems and other declarations can be imported.
Inspect your website with DevTools and copy the CSS.
Online tutorials, CodePen, ChatGPT, and many other sources provide CSS.
CSS declarations only
Webstudio liberates website creators from CSS selectors so they don't have to worry about specificity, combo classes, and having an HTML structure tightly coupled with CSS.
Therefore, Webstudio supports pasting CSS declarations, not selectors.
Tailwind CSS Support
You can paste HTML with Tailwind CSS classes, and Webstudio will automatically convert the Tailwind utility classes into native Webstudio styles.
How it works
Copy HTML containing Tailwind classes (e.g.,
<div class="flex items-center gap-4 p-6 bg-white rounded-lg">)Paste into Webstudio
Webstudio creates the component structure and applies the equivalent styles
This is especially useful when:
Using AI tools that generate Tailwind-based HTML
Migrating from Tailwind projects
Using Tailwind component libraries as a starting point
Related
Markdown β Paste Markdown to create components automatically
Webflow β Copy Webflow components into Webstudio
Shortcuts β Keyboard shortcuts for faster workflows
Commands and Search β Quick access to commands and settings
Anatomy of the Webstudio Builder β Overview of the Webstudio interface
Last updated
Was this helpful?
