mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
Before this change, we assigned the style sheet's location *after* its content rules were parsed and added to it. This meant any `@import`s would try to fetch their style sheet before they knew the URL they should fetch it relative to.
6 lines
54 B
CSS
6 lines
54 B
CSS
@import "import-b.css";
|
|
|
|
#target {
|
|
width: 50px;
|
|
}
|