Here is the HTML page I am working with:
Click here to view the code on jsfiddle
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Extended UI</title>
<style type="text/css">
.header{
padding-right:50px;
}
.value{
padding-left:50px;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="score"><span class="header">Score:</span><span class="value">10</span></div>
<div id="dd-1"><span class="header">Has Account</span><span class="value"><select name="" id="">
<option value="">Yes</option>
<option value="">No</option>
</select></span></div>
<div id="dd-2"><span class="header">Has House</span><span class="value"><select name="" id="">
<option value="">Yes</option>
<option value="">No</option>
</select></span></div>
<div id="dd-3"><span class="header">Has Phone</span><span class="value"><select name="" id="">
<option value="">Yes</option>
<option value="">No</option>
</select></span></div>
</div>
</body>
</html>
The values on my page are not displayed in the correct order. How can I rearrange them properly?
Thank you!