View difference between Paste ID: jApKaXY2 and CsVPK9nL
SHOW: | | - or go back to the newest paste.
1
<?php
2
3
?>
4
5
<html>
6
7
<head>
8
	<style type="text/css">
9
		#outer-il {
10-
			width:100%;
10+
			width: 100%;
11-
			height:70px;
11+
			height: 43px;
12-
			position:absolute;
12+
			position: absolute;
13-
			vertical-align:top;
13+
			vertical-align: top;
14
		}
15
		.outer {
16-
			display:inline-block;
16+
			height: 43px;
17-
			width:80%;
17+
			display: inline-block;
18-
			vertical-align:top;
18+
			width: 80%;
19
			vertical-align: top;
20
			margin-top: -30px
21
		}
22
		.inner {
23
			vertical-align: top;
24
			position: relative;
25
			float: right;
26
		}
27
	</style>
28
</head>
29
30-
			<div class="inner button firstbutton" >My 1st Button</div>
30+
31-
			<div class="inner" >My 2nd Button</div>
31+
32-
			<div class="inner" >My 3rd Button</div>
32+
33
		<h2>My Title Line</h2>
34
		<div class="outer">
35
			<div class="inner"><button type="submit thirdbutton">My 3rd Button</div>
36
			<div class="inner"><button type="submit secndbutton">My 2nd Button</div>
37
			<div class="inner"><button type="submit firstbutton">My 1st Button</div>
38
		</div>
39
	</div>
40
	<hr>
41
</body>
42
43
</html>