mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
22 lines
451 B
HTML
22 lines
451 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.fa {
|
|
display: inline-block;
|
|
transform: translate(0, 0);
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="padding: 100px 0 0 0;">
|
|
<div class="fa">A</div>
|
|
</div>
|
|
</body>
|
|
</html>
|