Currently, I have a few div elements here. Once I figure out the right combination of style elements, I will transfer them to a stylesheet.
I'm attempting to make the last div appear with an absolute position in relation to the containing div ("one"). However, it keeps dropping to the bottom of div "one" as if it were relative. Can you help me identify what I might be doing wrong?
<div id="one" style = "position: relative; width: 900px; height: 250px;">
<% (5 .. 14).each do |s| %>
<div style="position: relative; margin-left: 150px;"><%= @name[s] %></div>
<% end %>
<div style = "position: absolute; top: 100; left: 10;">Top Six</div>
</div>
Your input is appreciated.