css positioning
Posted
by bsreekanth
on Stack Overflow
See other posts from Stack Overflow
or by bsreekanth
Published on 2010-06-01T20:40:02Z
Indexed on
2010/06/01
20:43 UTC
Read the original article
Hit count: 518
css
|css-positioning
Hello,
I have uploaded a part of my screen below (link: http://yfrog.com/0d30127380p)
It is part of a forum, so there are elements above and below it. The "Response Req.. Date" has a label, a date picker, and two drop down select control for time. I tried setting the width of the datepicker element, and a right margin so that the time selectors would position next to it. But it always sit below it. I'm not good in css positioning, so any suggestion would be highly appreciated.
<div class="wrapper ">
<label for="responseRequiredDate">
Response Required Date
<span class="indicator">*</span>
</label>
<input type="hidden" name="responseRequiredDate" value="struct" /><div class="datetimepicker">
<div class="datePicker">
</div>
<script> ...</script>
<div class="timepicker"><select ....
</div> </div>
the date picker insert a script tag, would that cause a problem. probably not.
© Stack Overflow or respective owner