CSS pseudo-class selector which matches the first child of its parent.

learn more… | top users | synonyms

0
votes
2answers
52 views

How last-child/first-child exactly work?

I have question how work first-child and last-child with elements and classes? Look on my example And for it I have some question: Why this rule not working: p.test1:first-child{ color: ...
-1
votes
2answers
21 views

trying to understand css3 syntax

msub > *:first-child:after, msub > * + *:before { ... } This is a code snippet from a css file I'm trying to understand. msub is the element. > This, greater than, applies to elements that is a ...
0
votes
4answers
93 views

CSS style for first table column except first cell of that column

So here is the <table>: <table class='census'> <tr> <th colspan="2">My Title</th> </tr> <tr> <td colspan="2" ...
2
votes
4answers
45 views

:First-child affecting all children

Hi I'm trying to target the first <a> element under .current-cat-parent but my jquery code is affecting all the <a> elements underneath this. How can I just target the first immediate ...
1
vote
2answers
72 views

CSS: Child combinator selector & :first-child?

I have a div with some other divs, some paragraphs and some images in it. It basically looks like this: <div id="parent"> <div> This image is inside a div. <img ...
0
votes
1answer
37 views

Selecting the first child of an element that are not of the same parent

I might be wording this incorrectly so I apologize. Is there a way with CSS to target the first-child of an element but not the others when they are not grouped in the same parent? so for example: ...
1
vote
2answers
45 views

:first-child and :last-child simultaneously

This may be very easy as i have a feeling i'm missing a basic point here. Situation: .singleOrder:first-child { border-radius: 5px 0 0 0; } .singleOrder:last-child { border-radius: 0 5px 0 ...
0
votes
3answers
64 views

CSS :first-child unexpected result when element has another element before

I'm trying to set a margin-top of 20px to all my paragraph elements excepting the first one. I've this code: <div> <h3>Title</h3> <p>Paragraph ...
0
votes
3answers
86 views

how to select my first child in jQuery [duplicate]

I'm having a bit of trouble selecting the first child in jQuery. I'm trying to do this to avoid having LOTS of if statements. Basically, you click on a button. This class selector is setup to handle ...
1
vote
1answer
53 views

Target final DIV of certain class for styling with CSS

I have a predetermined set of items generated by a different page which I can't modify. I want to style the first and last items in the list. The first item is no problem, but because the last item is ...
0
votes
3answers
285 views

Making nth-child work in IE8 and lower

I'm making use of the following code: .c-1:first-child, .c-2:first-child, .c-1:nth-child(4n+1) { margin-left: 0; } which is working great but I need to mimic this for browsers that do not support ...
3
votes
1answer
197 views

Adding Li elements in for loop of JSP but li a:first , last or nth child gives always last element

I am new to Jquery and CSS . I am trying to add li elements based on some condition in JSP -for loop as below: <ul id="my-criteria-list" > <% for( int i = 0 ; i < mychoices.length ...
0
votes
2answers
81 views

jquery .html() output ALL elements other than 1

I'm trying to output all first tds in all table rows, but .html() only outputs the first, rather than all. From the jQuery website: Description: Get the HTML contents of the first element in the ...
0
votes
2answers
72 views

Why does the the :last-child selector only selects the “lastest child”?

I've tried it a few times, and each time the next thing happens: When I use the :last-child selector, it only selects the very last child of the document, while the :first-child selector selects all ...
0
votes
1answer
70 views

jQuery click but not the first-child [closed]

I have a list HTML <ul class="choices"> <li><a href="#" data-flag="en"><img class="flag" src="/img/flag/United Kingdom.png" alt="" /></a></li> ...
0
votes
4answers
46 views

Selecting first elements of a class children of elements of another class in jQuery

I want to select first elements of a class which are children of elements of another class using jQuery. Please have a look at an example below to understand my question. <div class="a"> ...
0
votes
3answers
60 views

why does jquery first child work in ie6?

why does jquery first child work in ie6 and :first-child not? Is there some hack or so. :first-child vs $(":first-child")
1
vote
1answer
101 views

CSS first-child being overwritten using LESS

I've got the following CSS.less header.section-header ul { width: 100%; list-style-type: none; li { display: inline-block; padding-right: 10px; .bordered(0,0,0,@compcolor); ...
-1
votes
4answers
75 views

Finding element in jquery

How to find the first and last li dynamically using jquery? The finding of li should accept in all lists in document.. <script> $(document).ready(function() { ...
0
votes
1answer
87 views

small div fader with interval & play/pause function

i am playing around with a small fader. it works fine with a single child element, but with elements in elements not: http://jsfiddle.net/cz9a2/ should be: <div class="fadein"> <div ...
0
votes
2answers
71 views

First-child not working on a tag

The first-child pseudo-class selector doesn't seem to be having any effect. Here's the CSS, followed by HTML: .social-block a:first-child { margin-bottom: 20px; } <div ...
6
votes
2answers
108 views

Why does div#foo hr:first-child not work

I feel like this should work, if you can say #foo p:first-child why does #foo hr:first-child not work. If anyone can explain this one I'd really appreciate it. I've setup a JSFiddle demo here - ...
0
votes
1answer
186 views

first menu item looking differently, with :first-child element

I´m working on web-page menu, and I want to .current-menu-item - current item, to look differently. But first item of this menu should have rounded corners (top left, bottom left). How can I do that, ...
-1
votes
1answer
114 views

HTML/CSS: ul li help needed

I am working on a CSS drop-down for a menu and having some basic HTML complications. So lets say I have this list: -Male -John -18yrs -5'10" -Tim -Steve -21yrs ...
1
vote
1answer
187 views

:not(:first-child) and Jquery 1.8.0

Using PHP I am displaying row's of data in a table. Each row is a link. Instead of using an <a> tag in each table cell I decided to use Jquery to make each <tr> tag clickable, except for ...
1
vote
2answers
136 views

First Child not working on wordpress footer navigation

Hey guys I'm trying to create a horizontal navigation on the footer of a WordPress theme and was encountering several issues. I tried initially doing it as a display:inline which got it to be ...
1
vote
5answers
626 views

jQuery: how to check if child is first and also last

I am trying to set a custom style for elements that are ul - the first in many children (ul.first) last in many children (ul.last) the only child (ul.first.last or ul.only) HTML: <ul ...
6
votes
4answers
577 views

Last-child style over-rides first-child style when only one child is available

ul li:first-child a { border-radius: 5px 5px 0 0; } ul li:last-child a { border-radius: 0 0 5px 5px; } When there's just once child, the last-child style over-rides the first-child style. ...
0
votes
2answers
171 views

First-child and last-child pseudo property with CSS3

I try to create styles with first-child and last-child items but I encountered a problem. When I use first-child, because there is strong item just before, the style isn't apply. But my last-child ...
3
votes
2answers
754 views

With CSS only: Select first occurrence of class throughout whole document

We have a DOM like this: <div class="outer"> <div class="inner"> <!--// No "copyright" in this node //--> <div class="content">...</div> </div> ...
1
vote
2answers
849 views

Take last-child instead of first-child on the only table row

I have following CSS table tbody tr:last-child td { padding-top: 7px; border-bottom: 0; } table tbody tr:first-child td { padding-top: 6px; } Now I may have a table with just one row. The ...
0
votes
0answers
69 views

css first-child and hover issues

when you hover over Boats and Canoes you should see the 1 person text on the right by default. But when you hover over 2 person it should hide the 1 person text and show the 2 person. And when you ...
0
votes
2answers
814 views

xmlnode insertafter secondchild…or third?

I know this may seem like a silly question and I have attempted to check msdn documentation and also search this site for some time. I have unfortunately not been able to really understand how to do ...
1
vote
3answers
483 views

Last child CSS3

I need to delete the left-border from the first item and the right-border from the fourth item in a list without affecting any of the sub lists of those items. How can I do this? My code for the menu ...
0
votes
3answers
802 views

CSS firstchild in IE

I'm having problems with some CSS that works properly in Chrome and Firefox, but acts unexpectedly in IE 9 and 8. Here is an example (where user_info is a table): .user_info td:first-child+td { ...
0
votes
3answers
379 views

css3 first-child in anchor of list items

<style type="text/css"> #featured a:first-child { background-color:yellow; } </style> <div id="featured"> <ul class="ui-tabs-nav"> <li><a ...
-2
votes
5answers
2k views

jquery .not first or last

$('a').not(':first').not(':last').css('z-index', '90'); do this. I'm having problem with this. any suggestion?
1
vote
2answers
236 views

trouble selecting the first child of nested elements

I'm trying to select the first line item (<li>) with the class "subnav". I just cannot seem to get it: html: <nav> <ul class="navigation"> <li class="logo"><ul> ...
0
votes
3answers
610 views

how to select all list items except for the first and last using CSS only?

I have an HTML list, from which I need to select all but the first and last element. Right now I'm trying like this: .inputList li:not(:first-child):not(:last-child) { // stuff } Not ...
0
votes
2answers
515 views

first-child is not working properly in my css code

I have a problem using first-child I have the following html code to make a menu with first and second levels <ul id="navMenu" > <li class="parent"><a ...
1
vote
2answers
1k views

jquery ul li first-child change color

I am working for a simple menu, click each top menu, open sub menu, and set the first-child different background-color. Code in here: http://jsfiddle.net/X3Dey/ Thanks. ​
0
votes
1answer
677 views

th:first-child not working [closed]

i have this css : .table1 thead th:first-child{ -webkit-border-bottom-right-radius:8px; -webkit-border-top-right-radius:8px; -moz-border-radius:8px 0px 8px 0px; ...
0
votes
1answer
77 views

Select main wrapper

How can select the first container div, which is direct desendent of body with css? I have tried body:first-child{ background:red; } This does not work.
2
votes
2answers
693 views

IE Headaches - CSS :first-child selector not working, weird behavior using Google Web Fonts

I am trying to layout a web site but right away am having issues with IE. You can see the issue at http://dhines.com/moyatest. If you look at the page in IE vs Firefox, you'll see two differences. ...
1
vote
5answers
123 views

Manipulate only the first image with certain class

I have a PHP page that is bringing in results from a Database and displaying them on a page. Certain images have a red 'ball' to the left of their name to dictate that they have more information to ...
0
votes
2answers
165 views

jquery first-child on a fadeIn fadeOut list doesn't work

Chaps, I got this list that doesn't open the other list. http://jsfiddle.net/mdamC/147/ I want to display the first child and then on click display the other items.
4
votes
4answers
297 views

CSS or jQuery getting items _with_ first-child of a certain type

Is there a way in either CSS (IE7+) or jQuery to select items whose first-child has a particular type, such that like the following pseudocode, you would be able to select all li with a first child a: ...
0
votes
5answers
745 views

Show first child of element without a specific class using jQuery

I am trying to show the first child of an element which does not have a class of "submitted" So something like $('#menu li:first-child:not(".submitted")').show(); HTML: <ul id="menu"> ...
0
votes
1answer
105 views

How to get the first child that is a specific element?

This problem seems very simple, however I cannot get this to work. I have the following simple markup. <div id="left_pane"> <ul> <div id="indicator"></div> ...
0
votes
2answers
153 views

last-child to first-child

I want to change my css for a nav bar that currently uses the last-child selector to using the first-child to cover up a padding gap and therefore make it more cross-browser compliant. I know I should ...

1 2