blob: b2beec86e7fc07d2b289ace6546f779a303b452d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
</head>
<body onload="document.getElementById('d').style.margin = '60%';">
<div style="display: table-caption;">
<div id="d" >
a
b
<span style="float: left;">c</span>
<span style="float: left;">d</span>
</div>
</div>
</body>
</html>
|