mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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>
|