The pseudo-class of CSS allows for more specific selection of elements within a document based upon an element's status, location in the DOM tree structure, user action, or other factors.
1
vote
2answers
37 views
Add a line break after group of CSS pseudoclasses
How can I get a line break to be inserted after each group of two list elements? It doesn't necessarily need to be a HTML <br />, but just something to move the next two elements to the next ...
1
vote
2answers
50 views
Change attribute of CSS Pseudo classes (:hover) with jQuery
Is it even possible to change the pseudo classes with jQuery ? Is there any workaround for achieving this?
0
votes
1answer
36 views
css hover pseudo class issue when “leaving hover”
I'm trying to create a zoomable map that works when the mouse hovers over the map image, similar to how the maps work on Flickr (see the map on the right side-bar - ...
0
votes
1answer
17 views
Selectivizr error with xhr
IE strikes back
I'm using Selectivizr and IE7-8 throws me a js error at this line:
// --[ loadStyleSheet() ]-------------
function loadStyleSheet( url ) {
...
2
votes
2answers
85 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 ...
0
votes
0answers
21 views
Advise on resolving pseudo-class compatibility for IE8
I have used pseudo-classes in the project, that i am currently working on, and since it is already javascript heavy I am trying to avoid using selectivizr. Is there are way making psedoclass ...
1
vote
0answers
74 views
CSS :active pseudo-class not applying style in firefox
I'm trying to style an a tag to behave like a button using CSS styles. I don't have control over the fact that it's not a button because I'm changing the style of the CKEditor default Moono skin.
The ...
0
votes
4answers
87 views
jQuery method for hiding a div upon checking another radio button
I'm using the code, below, to show or hide a div upon the pseudoclass ":checked" added to an input (in my case checkboxes and radio buttons). Currently, it works perfectly with the checkboxes (the ...
0
votes
3answers
84 views
In CSS, what is the difference between ::first-letter and :first-letter?
Running through some test preparation, I was asked if this would set the first letter color correctly:
td.one::first-letter {
color:blue;
}
Now, I know I've seen places where the colon is ...
0
votes
1answer
24 views
Adding pseudo classes dynamically
I use the JQuery append API to build up the following message which contains a hyperlink
var initialMsg = jQuery('<div>').append(
jQuery('<span>').text('Network ...
0
votes
0answers
38 views
Safari on the iPhone cant display escaped unicode character
I created a pseudo-class (:before) for my class and set it's content parameter to \0027F6 which is the escaped unicode character for → (right arrow).
On Google Chrome on my Mac everything is ...
-2
votes
0answers
71 views
CSS selector :not(.hide):only-child [closed]
Is there any way to basically do a selector like
.btn:not(.hide):only-child
meaning, apply styling to an only child of .btn elements that don't also have .hide
edit: To be interpreted as select ...
0
votes
1answer
57 views
Css only, how to select all sibling selectors, both before and after the active element?
I have not been able to find an answer for this, so here goes:
I have 4 divs on the page. When one div is :active, I want all the other divs to adopt opacity:0;
has anyone come up with a way to ...
1
vote
2answers
50 views
How to animate or timing a Pseudo class using jQuery
Say I have an element and I want to change it on a hover state.
Using a Pseudo class it will look like this:
#element:before { background-position: 0px -50px; }
#element:hover:before { ...
0
votes
2answers
22 views
How to style both visited and not visited links in context?
The following
#navigation li a{
:link, :visited {
text-transform: capitalize;
}
}
was not worked for me.
Below code works but contains duplication
#navigation li a:link {
...
0
votes
1answer
74 views
css “:active” with right click, inconsistencies with browser implementation
I just noticed an inconsistency between the way browsers handle the css :active state of an element when it is right-clicked (contextmenu click)
Firefox: :active is not triggered
Chrome: :active is ...
0
votes
2answers
50 views
What's the difference between CSS3's :root pseudo class and html?
Can't seem to find much information about this.
Smashing Magazine seems to essentially say html and :root are the same thing but surely there must be a difference?
0
votes
3answers
97 views
Calculating CSS selector specificity for :not() pseudo-class
I already know how to calculate selector specificity for CSS (the a/b/c/d mentioned in specs). However, I am having trouble figuring how to calculate it for the :not() pseudo-class. See the following ...
0
votes
0answers
31 views
force input field validation
Is there a way to "force" (using a method on the DOM object I guess) an HTML input field to validate itself?
I tried looping through all the input elements and check for the pseudo-class :invalid at ...
2
votes
1answer
73 views
Detect pseudo class :invalid from javascript
Is there a way to detect the "appearance" of the pseudo-class :invalid on an input element through Javascript?
In other words, how could some Javascript code be triggered to run when the :invalid ...
0
votes
1answer
45 views
Is it possible to use :hover on :first-child:after?
HTML
<div>
<div></div>
</div>
CSS
div > :first-child:after {
background-color: orange;
color: #fff;
font-family: sans-serif;
font-size: 50px;
...
1
vote
3answers
31 views
css pseudoclass selector
I want to select the second div in my markup with css using :nth-child but I cannot make it work.
I have this markup generated by a plugin:
<div class="single-container">
...
0
votes
1answer
24 views
after pseudoclass and display
I encountered a problem with my after pseudoclass. The problem is that if there are any elements inside my div which has :after then these elements cover up my after element. Z-index does not help.
...
1
vote
2answers
150 views
CSS Title with Horizontal Line on either side
I am working on some CSS where the design calls for page titles (headings) to be centered with horizontal lines that are vertically centered on either side. Further, there is a background image on the ...
5
votes
3answers
52 views
using both :after and :hover
Is it possible to only display the :after pseudo using :hover? For example using alternative elements.
#parent{}
#child{display:none;}
#parent:hover >#child{display:block;}
As far as I've got ...
0
votes
1answer
23 views
Using :before to create icon including link
How can I use content with :before to create an icon that also acts as a link to a page?
For example, I currently have:
.basketBtn a:before
{
content:url('/images/mobile/basketIcon.png');
...
2
votes
3answers
49 views
Can I use multiple pseudo selectors focus with before/after on the same element?
I'm trying to combine using pseudo selectors with pseudo elements to create a custom tooltip.
My HTML:
<input id='test'/>
My CSS:
#test {
position: relative;
}
#test:focus {
...
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 ...
6
votes
3answers
100 views
Is there a way to add :hover to CSS :first-line pseudo-class?
I've been tinkering with some css for an HTML markup. The problem I am facing is that there is a style already applied using CSS :first-line pseudo-class. What I want is to change the style of this ...
3
votes
2answers
58 views
CSS pseudo-class fallback?
I'd like to use the tr:nth-child(even/odd) pseudo class for a table, but I want to support the IE 2 population as well. So, is there any purely css way to add a border to tr if nth-child isn't ...
0
votes
1answer
77 views
hover and active property not working on table
I have table in a site am working on, i have set the hover property and active background color property to be transparent but its till show black color on hover. I tried everything to override it, ...
3
votes
1answer
95 views
CSS pseudo class for leaving hover
I have a nice little hover effect on my website that quickly transitions in as the user hovers over a link. But when the user leaves hovering over the box, the shadow (and other traits) go away ...
0
votes
2answers
77 views
How to style a div with background images using pseudoclasses :active :visited :hover?
I got 4 divs and want to style them like this:
http://jsfiddle.net/AcvbG
HTML:
<a href="http://test" id="topleftbox"></a>
CSS:
#topleftbox {
background: red;
background-repeat: ...
0
votes
4answers
197 views
Alternative row color to div in css
I am trying to add alternative row color to div by using nth-child(odd).
I need to add the alternative color for the div which has the class name alternative_cls but not to the div which has the ...
0
votes
0answers
76 views
Using Object.defineProperty to create instance-specific properties within a prototype?
I'm trying to create a property within a prototype so it will be available in all instances (can't put it in the constructor and would prefer to not create it via instance.propertyname = *; if at all ...
2
votes
1answer
28 views
How do you iterate over all methods in a JavaScript pseudoclass, regardless of whether or not they are marked enumerable?
I'm trying to iterate over all methods in a JavaScript pseudoclass and can easily tell if something is a method or not with (obj.member instanceof Function), however I'm trying to include methods that ...
0
votes
0answers
29 views
pseudo class do no work after clicking on li
Pseudo active class do not work after I'm clicking on it I want the element hover and active will be the same
this is the css :
.mainnav this is a class in menu
.mainnav ul li a{
...
8
votes
6answers
86 views
CSS Selector :almost-empty?
I'm aware that the :empty pseudo-class will select all elements with no children, but I want to only select elements with text-nodes as children.
I have a bottom-border on my hyperlinks that're a ...
0
votes
2answers
52 views
Is it possible to iterate over all instances of a JavaScript pseudoclass?
I'm looking for a way (preferably without constructing a container they are added to) to loop through all instances of a JavaScript pseudoclass without looping nesting the instances off and looping ...
0
votes
2answers
73 views
How to access this variable in Object.defineProperty value flag?
I'm attempting to find a way to initialize a property value that is appended to all instances of a JavaScript pseudoclass with localized value references without the need to manually iterate over ...
2
votes
3answers
92 views
Is it possible to make a 1px bordered input field with 1 pointed side purely in css?
I'm trying to build a 1px bordered input field for a search box with :hover and :focus pseudo-classes applied to it. The catch is that the border has 1 pointed side.
Is it possible to do this ...
0
votes
1answer
50 views
Does anyone know of a robust JavaScript pseudoclass class?
I'm looking for a relatively simple but efficient mechanism to implement clean looking:
public, private and protected members (with actual public/private/protected access, but still extensible)
...
2
votes
1answer
42 views
How to set a dynamically generated pseudoclass name in JavaScript to work with the instanceof operator?
I'd like to set the name of a JavaScript pseudoclass stored in an array with a specific name, for example, the non-array version works flawlessly:
var Working = new Array();
Working = new ...
0
votes
2answers
122 views
How would this nth-child selector work in IE 8?
This is my div container:
#randomid {
margin-right:40px;
margin-bottom:35px;
float:left;
}
And there are 12 elements inside (in 2 rows). And I need to remove the margin-right from the far right ...
2
votes
2answers
91 views
Disable/remove css3 transitions after :active psuedo-class
So I have a typical scenario: a button styled to transition its colour when hovered over using the :hover psuedo-class.
The button also has a :active triggered class, so that it changes colour again ...
0
votes
3answers
128 views
Psuedo selector :hover but only when a DIV has a specific class
I have the following code that's triggered on the mouseover event of a DIV:
if(!$this.hasClass('ready'))
{ if($this.hasClass('activated'))
{
...
1
vote
1answer
125 views
:active pseudo-class doesn't work in Chrome on Android
:active pseudo-class works perfectly in mobile Safari and stock Android browser, but fails in Chrome on Android. (Tested on Nexus 4 Chrome, iPhone 4S Safari, Galaxy SII Browser.)
Any idea why?
2
votes
1answer
86 views
Last-child pseudo class for list not working [closed]
The last-child pseudo class I am using on a list is not working. JSFiddle: http://jsfiddle.net/yuvLk/
HTML:
<ul class="categories">
Categories
<li>{category_name}</li>
...
1
vote
2answers
226 views
What's the :any-link pseudo-class for?
I don't know if it's a part of any standard, but at least two major browsers have implemented it:
:-webkit-any-link in Chrome
:-moz-any-link in Firefox
I can't find any documentation for it. I ...
0
votes
1answer
220 views
Transition only for the border on hover, but not for background
Here I have some CSS:
#image-edges-beneath:hover{
background-color: blue;
}
#image-edges:hover{
background-color: blue;
}
#image-edges-beneat:hover:after{
...



