mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
318 B
HTML
23 lines
318 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
div {
|
|
display: table;
|
|
}
|
|
div div {
|
|
float: left;
|
|
width: 200px;
|
|
border: 2px solid #000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div>First float</div>
|
|
<script type="text/javascript">b=document.body.offsetHeight;</script>
|
|
<div>Second float</div>
|
|
</div>
|
|
</body>
|
|
</html>
|