You can edit directly in css code.
- Select an item in the inspector
- Click on the target css (file above the agreed css rules and below the heading "Corresponding CSS Rules")
- Make your changes.
If you want to select css file:
- Go to the Resources tab
- Frames> (frame name)> Style Sheets> nameofthecssfile.css
And finally, if you donβt have a CSS file, you can put your code in HTML using
- Right click on the body (or any other html tag), select "Edit as HTML"
Outside the tag, put your own style, for example:
<style>
@ -webkit-keyframes test {
0% {background: red}
100% {background: blue}
}
</style>
<body>
lorem ipsum
</body>
source share