mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
20 lines
293 B
HTML
20 lines
293 B
HTML
|
<style>
|
||
|
* {
|
||
|
font: 20px SerenitySans;
|
||
|
}
|
||
|
a {
|
||
|
padding: 5px;
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|
||
|
<style>
|
||
|
@namespace url('http://www.w3.org/1999/xhtml');
|
||
|
a {
|
||
|
padding: 10px;
|
||
|
color: green;
|
||
|
}
|
||
|
</style>
|
||
|
<p>
|
||
|
<a href="#">Should be green</a>
|
||
|
</p>
|