mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
316 B
HTML
28 lines
316 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
div {
|
||
|
float: right;
|
||
|
width: 250px;
|
||
|
text-align: right;
|
||
|
}
|
||
|
ul {
|
||
|
margin: 0; padding: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
li {
|
||
|
margin: 0 270px 0 0;
|
||
|
padding: 0;
|
||
|
text-align: right;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>Floater.</div>
|
||
|
<ul>
|
||
|
<li>List item.</li>
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|