Creating a range behaves like a button
I have the following html
<div class="btns">
<div id="green"> <span class="btn btn-block btn-large btn-success disabled green_btn">Green</span>
<div class="num">(1)</div>
</div>
<div id="red">
<form class="button_to" >
<div>
<input class="btn btn-block btn-large btn-danger red_btn"
type="submit" value="Red">
</div>
</form>
<div class="num">(0)</div>
</div>
</div>
and css
.btns {
position: relative;
}
.num {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}
#green, #red {
display: inline-block;
width: 49%;
position: relative;
}
.green_btn, .red_btn {
margin-bottom: 4px;
}
I canβt understand why (1) under the green span does not behave like (0) under the red button. If I delete bottom:0;, it captures green, but the mess is red.
Here is jsfiddle to illustrate the problem http://jsfiddle.net/HajHV/
What am I missing here?
+5
5 answers
