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
1answer
19 views
Ignore the XMLNS prefixes in CSS
i use the CSS selector xmlns\:div for XMLNS to style my elements, but i cant use the tag elment selectors... for example div{color:#fff;}
NB: the XMLNS prefixes is generated automatically so i can't ...
0
votes
1answer
29 views
What is the default way an iOS device handles the :hover pseudo-class?
I have a div that can be clicked (via jQuery $('.mydiv').click ) - this expands the div, a second click collapses it.
The same div has some CSS :hover rules applied to it (i.e. to show more info on ...
1
vote
0answers
60 views
MVC Rendering incorrectly with specific CSS selectors
I am currently working on a project using C#.NET MVC (Razor).
I have come across a problem where text output is rendered differently if it is inside an html block with a css selector using a very ...
1
vote
1answer
63 views
CSS selector to check an attribute of a child div and style based on the result?
Is there some kind of CSS selector method I can use to get an attribute of a child element, and style the parent based on that element's value?
For example;
<div class="bigparent">
<div ...
0
votes
0answers
21 views
IE Quirks Mode and CSS :hover Issue
Well, I've been racking my brain this afternoon and have not made any progress. I am trying to do a simple background position change that I have done 100s of times but it just is not working for me ...
1
vote
1answer
66 views
What is wrong with this css targeting?
I might have been staring at the computer screen too long today and looked over something small but why can I not target these individual cells? (a1, a2, a3, etc...)
<div class="row-a">
...
1
vote
4answers
38 views
CSS styles “leaking” to non-intended elements, why does it happen and how to prevent it?
According to the W3Schools CSS notes, if you use an ID on an element, then the CSS styles defined for that ID (using #id_name) should only apply to that element, and this is how you should style an ...
0
votes
1answer
30 views
:nth-of-type(n) does not work as expected
When using :nth-of-type(n) to make a selection it does not return the expected response.
I'm wanting to select the second <td> element with className b.
Why when using selector ...
1
vote
2answers
28 views
CSS/JQuery selectors odd behaviour
When using the jquery selectors I stumbled at something odd.
My HTML:
<ul id="unordered-list">
<li>
<img src="https://www.google.com/images/srpr/logo4w.png" width="40" ...
-1
votes
2answers
50 views
Is there a shorter way to find classes
I was wondering if there was a shorter way to achieve this kind of css selector :
.post.quote, .post.photo, .post.video {
...
}
2
votes
3answers
26 views
Select multiple DIVs based in ID , excluding mutiple child DIVs
I need help selecting the following DIVs based on IDs but excluding some of the children DIVs in two different types of pages using a single style.css file:
PAGE1:
...
<div id="main">
...
3
votes
4answers
42 views
CSS selector for all table columns greater than nth-of-type(2)?
My current CSS selects the 2nd column:
tr td:nth-of-type(2) {
padding-left:20px;
width:100px;
background-color:yellow;
}
How can I target all columns after the 2nd?
0
votes
3answers
60 views
CSS wildcards with :first-child
I have an unwieldy chunk of css that I am using to set the margin-top of the first child of an element. The first child can be any tag.
.comment-description p:first-child,
.comment-description ...
2
votes
1answer
46 views
Is there a way to style different element based on CSS :hover selector (where hovered element and affectee are not in relationship)
Here in the sample fiddle hovering over a changes the background color of First para to red
As a and #p1 are siblings
And this technique(by changing the selector in b/w) will work if there is any ...
2
votes
3answers
44 views
CSS 3 not selector for print media
I am trying to print a part of my entire html document. I am using the below css to do that.
@media print { body * {
visibility: hidden;
}
#print-area * {
visibility: visible;
}}
It is ...
0
votes
2answers
85 views
Is it with CSS possible to target the first img in each line?
Is it with CSS possible to target the first img in each line. The img element has the following properties:
float: left;
margin-left: 20px;
I would like to set margin-left to 0 on the first img in ...
0
votes
3answers
56 views
Overriding a CSS rule for p tag fails
Here is the markup that I have
<div class="sign-in ">
<form>
<fieldset>
<p class="note">
Note
</p>
</div>
The CSS rule that one of my stylesheet has is this :
...
3
votes
0answers
50 views
CSS selector to get the last visible element [duplicate]
I have a list of buttons where the first and last visible buttons should have special styling (eg, rounded corners.) The catch is some buttons are hidden, so I can't simply use the :last-child pseudo ...
1
vote
1answer
43 views
Multiple Classes and IDs
Apologies upfront for basic syntax question. Still learning. My theme default has this:
#main .entry h3 {padding-bottom: 15px;}
I have a class of h3 headers where I want padding-bottom: 0px
I ...
4
votes
2answers
96 views
Style not getting overriden
This is a section of my CSS stylesheet:
table tr td {
border-width: 1px;
border-style: solid;
border-color: black;
border-collapse: collapse;
overflow: wrap;
background-color: ...
0
votes
2answers
24 views
Alternating element's style using pseudo class that are in separate parents
I have several div elements and I want to alternate another set of div styles within them. So basically change the child's style to alternating background colors like so:
HTML
<article ...
3
votes
1answer
68 views
IE8 CSS selector ~ (tilde) addresses only first element
IE 8 will address only the first tooltip element "a[data-tooltip="sk_5 …" instead the preceeding ones too.
The HTML:
<div class="skcontainer">
<a class="specialClassifications ...
7
votes
2answers
88 views
How use particular word from class in css?
i have some '<a> <i> <label>' in my page like below with the class
<a class="icon-home"></a>
<label class="icon-pencil"></label>
<i ...
1
vote
1answer
33 views
How to select all elements after specific element in CSS
I want to apply some specific styles to all elements which come after a certain element. For example, I want to select all elements which come after divider and change their background color to green.
...
-1
votes
2answers
48 views
CSS Performance: Do web browsers coalesce the execution of CSS rules?
Do web browsers coalesce the execution of css rules so that they run efficiently?
I know that multiple css rules are cascaded.
I'm only interested in the performance implications of cascaded rules.
...
3
votes
1answer
66 views
CSS 'contains' attribute selector not working in IE8
I want to change the margins round images depending on how they are floated. I used the 'contains' attribute selector which works fine except for IE8. See code below.
I cant really alter the HTML ...
0
votes
3answers
67 views
How to select column in a table
I get tables, without any css attributes, some columns are optional.
<TABLE>
<TR>
<TH>name A(optional)</TH>
<TH>name B</TH>
<TH>name ...
5
votes
4answers
73 views
Chrome and CSS attribute selector
I have the following HTML code, where I would like to format with css a data format (coming from xml) which can't be changed.
I have to give different styles to elements with different attribute ...
3
votes
4answers
45 views
Styling a dynamic nested UL structure
I have a nested UL structure that represents a folder tree which can grow very deep. I'm stuck at doing a simple :hover effect for the LI elements. The problem is that doing a li:hover won't work as ...
3
votes
3answers
49 views
CSS specificity of a nested HTML element that doesn't have any explicitly declared styles
I am trying to find the explanation for this CSS cascading/inheritance rule. Given the example below, I would have thought the em tag would be colored #000000, but I was told that the em tag would be ...
0
votes
0answers
29 views
Pure css2 or css3 trick to get parent element [duplicate]
Is there a trick to get a parent of element? I have a html structure and i cannot edit this. I cannot use javascript. So, i just have css for solution. I was looking for some way, but i only found ...
0
votes
1answer
15 views
Trying to find DOM elements matched by a CSS selector using firebug
Is it possible to enter a CSS selector into firebug and for it to highlight the corresponding element(s)?
Thanks
1
vote
2answers
58 views
CSS: how to select parent's sibling [duplicate]
I have the following HTML in my page.
<ul id="detailsList">
<li>
<input type="checkbox" id="showCheckbox" />
<label for="showCheckbox">Show ...
-3
votes
2answers
41 views
translating css3 selector to javascript [closed]
I need to adapt some css code to javascript.
I have next code, and I need to adapt it to javascript objects, through .style of javascript object.
With attributes, I'm doing well, but with selectors ...
1
vote
1answer
49 views
shortening complex css selectors
I am trying to shorten some css selectors for ease of reading
for example:
.a>.c,.b>.c
I thought I had used parenthesis in the past to group the union before continuing with more selectors
...
5
votes
5answers
57 views
Possible to target element by nth-child “globally”?
Suppose I have a hierararchy like:
ul
li
li
ul
li
li <-----
li
Can I target the marked li by li:nth-child(4) or something similar?
0
votes
3answers
51 views
Multiple nth-last-child and/or last-child not working
NOT WORKING:
td:not(:last-child), td:not(:nth-last-child(2))
{ background-color:#ccc; }
NOT WORKING:
td:not(:nth-last-child(1)), td:not(:nth-last-child(2))
{ background-color:#ccc; }
NOT ...
3
votes
1answer
36 views
CSS/HTML: ul:empty selector won't match an empty list
I have the following CSS and HTML code:
ul#actions
{
clear: left;
width: calc(60% - 2px);
margin: 5px auto;
padding: 10px 0px;
text-align: center;
}
ul#actions:empty
{
...
1
vote
1answer
74 views
CSS not selector is excluding all elements [duplicate]
I have a default class for my form which is defining some styles rules (scss format) like this:
form.simple_form {
$indent: 200px;
$length: 350px;
....
}
In some cases, I need other set ...
3
votes
1answer
39 views
Why do a:link, :visited, :hover, :active need to be in correct order?
According to W3 Schools the order that the pseudo classes on the anchor element are declared is vitally important.
Why is this? Are there any others?
3
votes
2answers
34 views
Odd styling behavior in Chrome with readonly attribute selector
I've been working on a project involving more or less static CSS and HTML5 with a lot of javascript.
In an attempt to style certain input elements as "faded out" when they can't be edited, I've ...
1
vote
1answer
53 views
How to give multiple arguments to find element by css selector
Hi I'm kind of new to selenium, so please bear with me if the question is too basic.
I wanna access a date picker element and choose a specific date.
I am trying to access the span element using both ...
2
votes
3answers
55 views
Illegal CSS Selector
I want to use this CSS selector with Selenium webdriver
#coordinatonTable .odd:not(:has(.dataTables_empty))
I get an "An invalid or illegal string was specified" error.
I tried the jquery selector ...
2
votes
6answers
62 views
Should CSS selectors include elements from the DOM?
When I studied front end dev at the university a few years ago, our teacher taught us to always provide the full (almost) parental
DOM hierarchy of the targeted element within our CSS selectors.
So ...
3
votes
1answer
43 views
Psuedo element stopping event click
I am customizing select box by using css :after Attribute.
Html:
<div class="styled">
<select>
<option>India, Rupees (Rs.)</option>
<option>USA, ...
3
votes
2answers
60 views
Why isn't it possible to combine vendor-specific placeholder pseudo-elements/classes into one rule set?
In CSS it is possible to style placeholder text within an input using a combination of vendor-specific pseudo-classes and pseudo-elements (to get the best cross-browser coverage).
These all share the ...
1
vote
1answer
26 views
Spree Deface, can select anything but a class
I'm trying to use Deface to add a button in a column in a table in Spree Admin. But I just can't get my CSS-like selector right. I can select the table row using a data-hook, and can select child ...
4
votes
1answer
29 views
How to select all div in `.content` but not contain the div I don't want to?
How to select all div in .content but not contain the div I don't want to?
.content div:not(class="a", class="c"){ // not work
display: none;
}
<div class="content"></div>
...
-3
votes
2answers
64 views
Css Performance Selectors
I am trying to learn about the performance of css selectors.
For example, what is slower:
#container .hello
.hello #left
where there is one #container block.
What should I know about performance ...
1
vote
2answers
33 views
Format all labels after a checkbox and radio button with css selector
I have radio buttons and checkboxes with each a label on its right side.
I want to format the label with a margin-left:10px; to have a distant to the radion/check controls.
input[type="checkbox"], ...





