vote up 0 vote down star

I have a DIV with two update panels inside of them. The update panels render as divs but asp.net does not let me assign a class to a div. I can do this using jQuery by assigning css to the first child, then assigning different css to the 2nd or las child. Can I do this purely with css? Something similiar to this.

.outerdiv div { width:45%; }

/*float:left */ .outerdiv div(0) { float:left; }

/*float:right */ .outerdiv div(1) { float:right; }

Any help is appreciated. Cheers, ~ck in San Diego

flag

40% accept rate

3 Answers

vote up 0 vote down

Assuming that .outerdiv only contains those two div's, this should work in most modern web browsers:

.outerdiv div:first-child {float:left;}
.outerdiv div:last-child {float:right;}
link|flag
vote up 0 vote down

While this doesn't scale to more divs than 2, you can use:

.outerdiv div { float: right; }
.outerdiv div:first-child { float: left }
link|flag
If you do this make sure you have a DOCTYPE declaration or this will not work in IE. w3schools.com/CSS/css_pseudo_classes.asp/… – tomk Jul 27 at 19:25
vote up 1 vote down

Or you can wrap the Update Panel DIVs with another DIV...

<div class="outerdiv">
  <div class="outerdivleft">
    ... Update Panel Left ...
  </div>
  <div class="outerdivright">
    ... Update Panel Right ...
  </div>
</div>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.