mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
34 lines
322 B
HTML
34 lines
322 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
a:before
|
|
{
|
|
content: "<";
|
|
}
|
|
|
|
a:after
|
|
{
|
|
content: ">";
|
|
}
|
|
|
|
a[class~="imglink"]:before
|
|
{
|
|
content: normal;
|
|
}
|
|
|
|
a[class~="imglink"]:after
|
|
{
|
|
content: normal;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a href="" class="imglink">
|
|
This should not have angle brackets.
|
|
<br />
|
|
<a href="">This should</a>
|
|
|
|
</body></html>
|