运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="mystyle.css"> <style> body {background-color: lightblue;} </style> </head> <body style="background-color: olivedrab"> <h1>Multiple Styles Cascades Into One</h1> <p>Try to experiment by removing styles to see how the cascading stylesheets work.</p> <p>Try removing the inline first, then the internal, then the external.</p> </body> </html>