Selectors are patterns that match against elements in a document tree. In a CSS rule, they are used to define styles for elements that match the pattern.
1
vote
4answers
19 views
How to disable a textbox if a checkbox is checked using jQuery?
I want to disable a textbox if a user unchecks a checkbox and change the background colour of textbox. If the user checks the checkbox then that textbox should be editable and changes to white colour.
...
-1
votes
1answer
25 views
Compare css selectors performance
I have such code:
Html:
<ul class="list">
<li class="list-item"> item 1 </li>
<li class="list-item list-item_active"> Active item </li>
<li ...
1
vote
1answer
31 views
Combining / Merging CSS selectors
A basic CSS example. Every browser I have come across will render the item with the margin & padding and a red border
.test{
margin: 4px;
border: 1px solid black;
padding: 4px;
}
...
1
vote
2answers
37 views
CSS active with ID and CLASS
How do I code this CSS using class="active" so that the background will show below it? Using a different color on .active, so to speak (not :hover).
<a href="[url]" id="curs_section" ...
0
votes
0answers
21 views
Jsoup - CSS Select in DOM structure
I have got the following HTML:
some text <b>some bold text</b>
<span property='some property1>
some semantic term2</span>
<p><span id='mark1'></span>
some ...
0
votes
3answers
61 views
What is the mouse down selector in CSS?
I have noticed that buttons and other elements have a default styling and behave in 3 steps: normal view, hover/focus view and mousedown/click view, in CSS I can change the styling of normal view and ...
0
votes
1answer
56 views
last child with element inside
I think this is impossible :-(
Using CSS, I need to select the last label in the list of paragraphs, which is inside of a span.
<div>
<p>
<span>
...
1
vote
1answer
54 views
Styling a radio label in an adjacent table cell
Ok, I can't effect the HTML being spit out, as it's from a online survey tool. But I can link to my own CSS stylesheet and affect the styling anyway I'd like.
Here is the issue, I have a series of ...
17
votes
3answers
640 views
What is the logic behind sibling combinators * + * and * ~ *?
For this question I'm using the following markup:
<body>
<p>1</p> <!-- Paragraph 1 -->
<p>2</p> <!-- Paragraph 2 -->
<p>3</p> <!-- ...
0
votes
3answers
59 views
:first-child isn't working when targeting element using a descendant selector
For some reason, I am not able to select the first occurrence of an img element inside a div with the class productdescription.
Is this because the img is also within a p every time? The img has to ...
0
votes
3answers
40 views
Apply style to first element in a row of similar elements
I have the following list (the numbers are just for reference)
<div class="A">alpha1</div>
<div class="B">alpha2</div>
<div class="A">alpha3</div>
<div ...
0
votes
4answers
36 views
first child in multiple sub containers
How am I abled to select the first, second and third span related to layer 1, independent from if it is the first child of a div at layer 2?
<div class="LAYER1">
<div class="LAYER2">
...
0
votes
2answers
37 views
Can I combine direct descendant with first-child pseudo-selector?
I've got a container div that could contain any number of children. I want to target all links that are direct descendants of the container div, and can do so with .container > a. But then, I want ...
-3
votes
2answers
49 views
CSS - target the first element with class
HTML:
<p class=menu_top>Title</p>
<p class=menu_top>Order</p>
<p class=menu_top>Position</p>
<p class=menu_top>Number</p>
How can I target just the ...
0
votes
3answers
41 views
is there a way to select a child element of an element using css
example below should comprehend my question.
<div id="bmw" class="car">
<div class="seats">4</div>
<div class="fuel">petrol</div>
</div>
<div id="merc" ...
0
votes
1answer
54 views
css locator that would shortens multiple td's
SeleniumIDE in firefox, using a locator of
css=table#students tr +tr td +td +td +td +td +td +td +td
mytext
for the last column in thr row of a table.
Any shorter way to do this with a css locator ?
...
4
votes
1answer
63 views
Selecting <p> Descendant using CSS
How come all the result have the default Black color? Non of the rules were accepted! Is this because <p> is not allowed to have descendants? Where would such rule be listed? Thanks.
Example
...
-2
votes
3answers
66 views
How to select loose text between tags
In cases you find text in HTML code that is not embeded in any tags such as:
<sometag> ex1 </sometag>
I know many ways to select the text using a p tag or using a class or an id on the ...
0
votes
3answers
55 views
Styling a Label Attached to Text Inputs
I am trying to style all labels that precede input fields, except for checkboxes and radio buttons.
Using the ~ selector I've gotten everything working except "text" input tags--every other type I ...
0
votes
1answer
45 views
CSS selector attr *= support in IE8
I noticed selectivizr does not support [attr*=] using jQuery.
Any ideas on how I could support the following selector in ie8?
a:not([class*="st-"])
0
votes
3answers
65 views
Why CSS selectors on links are tricky with underline with hover?
Here are two examples based on this HTML.
<a href="#">
<div class="foo">
hello
<span class="bar">world</span>
</div>
</a>
In the first ...
0
votes
3answers
56 views
CSS 'nth-of-type' and 'first-of-type Selectors' - Good Practice/Tidier Code
I am currently using this CSS selector:
td:nth-of-type(2),td:nth-of-type(3),
td:nth-of-type(4),td:nth-of-type(5),
td:nth-of-type(6),td:nth-of-type(7),
td:nth-of-type(8),td:nth-of-type(9),
...
0
votes
1answer
31 views
Match text content and apply style
I have some parts of text that I want to have custom styles applied to:
<span class="filename">ExportFileName_datefollows_%1$tY.txt<span/>
I'm wondering if (A) I can select the %1$tY ...
0
votes
4answers
38 views
Trying to select CSS3 elements in a nested <li> style menu
I have an HTML structure like this:
<div id="nav">
<ul>
<li><a href="/">Home</a></li>
<li><a ...
1
vote
1answer
77 views
have no idea why :first-child is not working as expected
I'm under the impression that :first-child will select an element if that element is the first-child of the parent... such as h1:first-child should select the h1 IF it is the first child of its ...
1
vote
1answer
39 views
CSS3 nth-child tiles background color alternate based on number of columns
Starting with the fiddle http://jsfiddle.net/sujesharukil/j5acY/
I have two ul elements. Both have li floating left. The CSS creates a tiled structure. I am alternating the background color of my li ...
0
votes
2answers
47 views
CSS selector: why `.classA + .classB:nth-of-type(3)` not working?
Given HTML such:
<div class="h2 colors">Title: Colors</div>
<div class="pair">Hello world</div>
<div class="pair">Hello world</div>
<div class="pair">Hello ...
5
votes
3answers
103 views
CSS select: how to count and select child of a specific class only?
Given the html where all items are at the same level such:
<div class="h2">Title: Colors</div>
<div class="pair">Hello world (1)</div>
<div class="pair">Hello world ...
-1
votes
4answers
60 views
How to select nested elements using standard CSS selectors (nth-of-type or nth-child) for Selenium?
How would I select the paragraph tag for B (or C), using the nth-child or nth-of-type? I am using the Selenium WebDriver.
<tr>
<td>
<p class="myClass">A</p>
...
0
votes
1answer
49 views
What is the alternative to CSS-selecting an ancestor
CSS(3) has descendent selectors, e.g. td em {color: red};, but no ancestor selector, apparently.
So, what should I do instead of something like td {border: 1pt solid red} em; ? i.e., how can I set a ...
1
vote
1answer
65 views
Select all td in tr in nested table with css selector
I want to select all td inside the first tr of the tbody. I would normally do this like: tbody:first-child td --> but this gives me the result you can see on the image, the yellow is the result.
My ...
0
votes
1answer
50 views
element:last-child effects all the element and not only last
Im trying to remove border-bottom from the last element, but it affect all the elements.
This is what I have for now.
HTML
<div class="cv-content">
</div>
<div ...
1
vote
5answers
59 views
CSS - Selector of label for type?
I'm using this post explaining how to add a selector of a label for a given element. However, I'd like to use it to select all labels for a given type (specifically, the type radio). Trying:
...
0
votes
4answers
53 views
How to change the background-color of the whole row when thead row has less columns than tbody rows?
I'm wondering how can I have the same width for all the rows in the table?
As you can see in the page...I want to change the background color of the header but the header doesnt have the same width as ...
2
votes
5answers
37 views
Broken css code - border doesnt get overwritten
So i have encountered a new problem which was never the case before.
<ul id="mainmenu">
<li class="mbutton"><a class="currentnav" href="#">Link 1</a></li>
<li ...
1
vote
2answers
88 views
Why is my CSS style not being applied?
I've got this html:
<p>
<span class="fancify">Parting is such sweet sorrow!</span><span> - Bill Rattleandrollspeer</span>
</p>
...and this css (added to the ...
0
votes
1answer
44 views
Trying to select the Semifinal div with CSS
I'm trying to use CSS (3) to select the div which is not the last but one before the last. So:
<div id="wrapper">
<div class="panel one"></div>
<div class="panel ...
0
votes
2answers
45 views
Select next element when input is checked
HTML:
<label>
<input type="checkbox" />
</label>
<div>
stuff
</div>
I'd like to be able to style the DIV element depending on the checked state of the input, like
...
0
votes
2answers
55 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: ...
4
votes
4answers
140 views
CSS selector for select option value
Is there a CSS selector that allows me to select an element based on an HTML select option value?
<select>
<option value="1">1</option>
<option ...
0
votes
1answer
33 views
how to change the hyperlink's color with a .selected with a ID name in it?
The code is like this
<div class="header">
<ul>
<li>
<a class="abc" id="abc">testing</a>
</li>
</ul>
</div>
I ...
0
votes
4answers
60 views
Why does this selector not work
Given the following markup
<div class="fixed">
<div class="clmn2">
</div>
<div class="clmn2">
</div>
</div>
And the information given on mdn
By ...
3
votes
5answers
94 views
CSS priorities and targeting specific elements
My question should be pretty strait forward. For some reason I can't wrap my head around it today.
I'm making a menu with a structure like so
<div class="wrapper">
<ul>
...
2
votes
2answers
55 views
Css selector equivalent to '//div[contains(@class, 'a b') and not (contains(@style, 'c'))]'
The xpath is //div[contains(@class, 'a b') and not (contains(@style, 'c'))]
What would the equivalent css selector be? Easy to get first bit div[class*='a b'], but how to negate and combine them?
3
votes
3answers
36 views
Select elements where attribute is non-empty
Suppose I have the following:
<div data-pid="">Unknown</div>
<div data-pid="123">Known 123</div>
Is there a way in CSS to select only elements where the data-pid attribute ...
1
vote
2answers
45 views
Selector to combine Asterisk and parent element?
I know that the Asterisk match all items inside an element. Is there any selector, that includes the parent element too?
Sample HTML
<p>
foobar
<span>
foobar
...
3
votes
2answers
95 views
Why CSS :not pseudo-class doesn't work as expected?
Consider the following HTML:
<div class="a">
<div class="b">Hello</div>
</div>
<div class="c">
<div class="b">World</div>
</div>
Adding ...
3
votes
1answer
56 views
less css using last-child selector
I am using less and trying to get the last input to have a margin-bottom of 10px. Here is what I have, but it is not working, and not applying the margin-bottom on the last input. Any ideas why?
...
3
votes
2answers
88 views
How do we select first occurence of an element in the entire document using CSS
This question stumped me
Say suppose we have a structure like this
<!-- Elements can be dynamic -->
<div>
<section>
</section>
<section>
<p>1st ...
1
vote
2answers
75 views
How to select DOM parent from child in CSS [duplicate]
is it possible to effect a parent node based on a child node's :hover state? ie.
nav ul li a:hover {
/* something here to effect the li or the ul or the nav elements */
}
not that bothered about ...






