mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
490 B
HTML
31 lines
490 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title></title>
|
||
|
<style type="text/css">
|
||
|
.big {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
width: 20px;
|
||
|
height: 400px;
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
|
||
|
.fl {
|
||
|
float: left;
|
||
|
clear: left;
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="fl">this div should be under the big img</div>
|
||
|
<img class="fl" >
|
||
|
<img class="fl" >
|
||
|
<img class="fl" >
|
||
|
<img class="fl" >
|
||
|
<img class="big" >
|
||
|
</body>
|
||
|
</html>
|