mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
753 B
HTML
38 lines
753 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-uk" lang="en-uk">
|
|
|
|
<head>
|
|
|
|
<title>Float test page.</title>
|
|
|
|
<style type="text/css">
|
|
<!--
|
|
hr {
|
|
clear: both;
|
|
}
|
|
span.floatright {
|
|
float: right;
|
|
margin-left: 10px;
|
|
}
|
|
span.floatright2 {
|
|
float: right;
|
|
}
|
|
-->
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p><span class="floatright">XXXXXXXXXXXXXXXXXXXXXXXXXXXXX</span>
|
|
<span class="floatright">XXXXXXXXXXXXXXXXXXXXXXXXXXXXX</span></p>
|
|
|
|
<hr />
|
|
|
|
<p><span class="floatright2">XXXXXXXXXXXXXXXXXXXXXXXXXXXXX</span>
|
|
<span class="floatright2">XXXXXXXXXXXXXXXXXXXXXXXXXXXXX</span></p>
|
|
|
|
</body>
|
|
</html>
|
|
|