mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00
20 lines
305 B
HTML
20 lines
305 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* {
|
|
font: 20px SerenitySans;
|
|
}
|
|
a {
|
|
padding: 5px;
|
|
color: red;
|
|
}
|
|
</style>
|
|
<style>
|
|
@namespace url('http://www.w3.org/2000/svg');
|
|
a {
|
|
padding: 10px;
|
|
color: green;
|
|
}
|
|
</style>
|
|
<p>
|
|
<a href="#">Should be red</a>
|
|
</p>
|