Tagged Questions
The pseudo-class tag has no wiki summary.
20
votes
9answers
9k views
Setting CSS pseudo-class rules from JavaScript
I'm looking for a way to change the CSS rules for pseudo-class selectors (such as :link, :hover, etc.) from JavaScript.
So an analogue of the CSS code: a:hover { color: red } in JS.
I couldn't find ...
11
votes
2answers
749 views
How do I inspect CSS pseudo classes with firebug?
I am struggling with a reluctant a:hover css style which I cannot override.
I tried to inspect the element in firebug, but I cannot see why it won't work. I don't even see how to properly inspect a ...
8
votes
2answers
75 views
What is the difference between a pseudo-class and a pseudo-element in CSS?
Things like a:link or div::after...
Information on the difference seems scarce.
7
votes
6answers
630 views
Alternate div background color
I have a structure like the following:
<div class="wrapper"...>
<a href="#"...>blah</a>
<div class="post"...>stuff</div>
</div>
And it repeats throughout a ...
6
votes
3answers
562 views
Confused by CSS pseudo-class :active
I was looking here at CSS :active Selector.
The :active selector styles links to
active pages
That got me thinking, what the heck is an 'active page' in HTML/CSS terminology...
At this point ...
6
votes
3answers
3k views
:active pseudo-class doesn't work in mobile safari
In Webkit on iPhone/iPad/iPod, specifying styling for an :active pseudo-class for an <a> tag doesn't trigger when you tap on the element. How can I get this to trigger? Example code:
...
5
votes
4answers
53 views
What's the difference between html[lang=“en”] and html:lang(en) in CSS?
The CSS language pseudo-class to allow us specify different styles for different languages, like so:
html:lang(en) .foo { ... }
However, this doesn't work in IE7, so I've been using an attribute ...
5
votes
4answers
249 views
How to change a Pseudo-class style through JavaScript?
This example is, for a matter of simplicity, just an illustration of what I need to do.
Say, I have an element, which style is set in a CSS. The style is set for the element as well as for a ...
5
votes
1answer
181 views
Access CSS styles for pseudo-classes in JQuery?
If I define the up and over states of a button like this:
.button {color:red;}
.button:hover {color:blue;}
How can I get all the hover state styles for an element using JQuery?
Something like ...
4
votes
2answers
926 views
CSS Pseudo-classes with inline styles
Is it possible to have Pseudo-classes using inline styles?
Example:
<a href="http://www.google.com" style="hover:text-decoration:none;">Google</a>
I know the above HTML wont work but ...
3
votes
3answers
145 views
CSS pseudo class won't work when normal class is set from javascript, under FF
I have p.first_p:first-letter in my stylesheet, as I checked, it works well when class first_p is set in HTML. Problems start when I use javascript to find elements and then set their class.
Under ...
3
votes
5answers
67 views
What's the best practice(s) to place an icon before or after links to indicate file type (ex: linking Adobe PDF, audio or video)
My team was debating what the best practice would be for wanting to insert an icon after links to the various media file types we have on our site. Examples would be linking to a PDF and wanting to ...
3
votes
1answer
85 views
:hover work on textarea in IE8?
I thought that the :hover pseudo-class only works on links in IE. This example proves this thought wrong when tested in IE8. How come?
3
votes
1answer
358 views
:before pseudo-class does't works with images
I have following HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>:before pseudo-class and images</title>
<style type="text/css" ...
3
votes
2answers
903 views
Using HTML in CSS After Tag for Hover State
I am currently trying to pass in some html into the the :after pseudo class in css to add an arrow after a link once hovered on. I have seen this done quite some time ago in the stock WordPress theme ...
3
votes
6answers
1k views
Insert special character using :before pseudo class in css
I was toying around with the :before pseudo class in css, trying to insert a special character but the result is not what I was hoping for.
Using:
.read_more:before {
content: "ยป";
...
3
votes
6answers
128 views
when is the :visited pseudo-class applied to a hyperlink
I have some questions about the :visited pseudo-class:
Based on what do browsers decide when the :visited pseudo-class should be applied to a hyperlink?
Do they take this information from the ...
3
votes
3answers
552 views
What is the difference between :focus and :active?
What is the difference between the :focus and :active pseudo-classes?
2
votes
2answers
57 views
How to make a hover effect for pseudo elements?
I have a this setup:
<div id="button">Button</div>
and this for CSS:
#button {color: #fff;
display: block;
height: 25px;
margin: 0 10px;
padding: 10px;
text-indent: ...
2
votes
4answers
71 views
:last-child pseudo class confusion
In this JSFiddle, the last .tab class doesn't get the correct border-radius effect (top right rounded corner).
I think I have my logic correct in saying :last-child selects the last .tab of .tabbed ...
2
votes
1answer
54 views
css :selected pseudo class similar to :checked, but for for <select> elements
Is there a way to style the currently selected <option> element in a <select> element?
I could then give a background color to the currently selected option element?
That way I can style ...
2
votes
2answers
57 views
using :focus pseudo class on li or other element else than a,input,button, etc
Is it possible to select an element that is focused, like a:focus or input:focus, but on the other element, such as div, li, span or else?
If it's not possible, can someone explain how to substitute ...
2
votes
3answers
74 views
Why doesn't this CSS :not() declaration filter down?
I want to select spans that are not the descendants of a specific class, let's call it "no". Here's my CSS:
div:not(.no) span{background-color:#00f;}
Here's the HTML
<div>
...
2
votes
3answers
85 views
Does jQuery have a :target pseudo-class similar to CSS3?
Does jQuery have a :target pseudo-class similar to CSS3?
If so, a demo would be nice.
Thanks!
2
votes
3answers
62 views
What is the correct way? CSS Link Pseudo-Class
I just found this:
Note: a:hover MUST come after a:link and a:visited in the CSS
definition in order to be effective!!
Note: a:active MUST come after a:hover in the CSS definition in order
...
2
votes
3answers
76 views
css first-letter for link
First letter pseudo class works perfect for p element but not for anchor(links). Why?
How to make the first-letter style different for <a> element
a:first-letter
{
font-size:200%;
...
2
votes
2answers
88 views
HTML5 & CSS3 Using multiple Pseudo classes and translateX/Y properties
So first of all let me admit I'm not the best at coding, I'm a graphic designer but I 'm trying to teach myself HTML5. I have managed to troubleshoot most of my problemsbut I'm stumped now.
...
2
votes
2answers
51 views
CSS Pseudo Classes with Article
I'm trying to get the first article on the page using CSS. I have tried the following:
article:first {
background: blue;
}
and
article:first-child {
background: blue;
}
However neither ...
2
votes
2answers
285 views
CSS: using image sprites with css pseudo classes :before and :after
I have never tried that before. I created an image sprite that is contains two icons. Each icon is 26px wide and high. So the sprite is 26x52px.
I have an element that is either in a div.something or ...
2
votes
1answer
124 views
CSS pseudo-classes :focus and :active not working with the ~ combinator in IE8
im so confused with the CSS Pseudo classes :focus or :active,because it works well with :hover in ie8 ,but don't work with :focus or :active.
like this:
<!doctype html>
<head>
...
2
votes
2answers
223 views
HTML/CSS: <a> tag CSS rules w/ pseudoclasses rendering inconsistently
I've come across an issue lately with my web design projects that has been insignificant enough to slip through my fingers unfixed a few times, but it's just gotten too annoying.
Say I have a style ...
2
votes
2answers
86 views
How do I select all pseudo-class child elements?
Is there a more concise way of writing this CSS?
.vertical > a:link,
.vertical > a:visited,
.vertical > a:hover,
.vertical > a:active
{color:blue;}
I am just looking to select all the a ...
2
votes
2answers
142 views
How to select all a pseudo-classes in CSS?
I've a button and I wanted to know if it is possible to make the css bellow shorter.
.button a:link, .button a:visited, .button a:hover, .button a:active {
color: #000;
text-decoration: none;
...
2
votes
1answer
496 views
How can I use CSS pseudo-classes with GWT's UiBinder?
I've been using the in-line styles approach as recommended by GWT's UiBinder documentation. I'm puzzled, though, about how to use CSS pseudo-classes with UiBinder; for example, suppose I would ...
2
votes
5answers
4k views
how can i select first second or third element with given class name using CSS?
ie. i have the following:
<div class="myclass">my text1</div>
some other code+containers...
<div class="myclass">my text2</div>
some other code+containers...
<div ...
2
votes
3answers
420 views
CSS: a:link vs just a (without the :link part)
So we're required to use the following order for CSS anchor pseudo-classes
a:link { color: red }
a:visited { color: blue }
a:hover { color: yellow }
a:active { color: lime }
But ...
2
votes
1answer
295 views
Using buttons instead of <a> with pseudo classes - is it wrong?
On the page there are links displayed with CSS as buttons:
HTML:
<a class="button" href="#">Button</a>
CSS:
a.button {
display: block;
position: relative;
...
2
votes
2answers
245 views
link order in css
Whats the correct order of styling the <a> element (link, visited, hover, active). All are confusing by providing different combination like LVHA, LAHV. Can anybody specify the correct ordering?
...
2
votes
4answers
72 views
Why is a pseudo-class so called?
a:hover
Why is it called a "pseudo-class"?
Are there any similarities with the concept of "class"?
1
vote
4answers
27 views
Descendant of first child
I'm trying to adress the descendant/child of the first child in a list. For example:
<ul>
<li>
<a>This "a" of the first list item should have a black background</a>
...
1
vote
1answer
20 views
Is this pseudo class ordering non-conflicting?
I am aware that the pseudo classes must be in order in order to not conflict each other. (double 'in order' intended)
The thing is that I read that CSS reads from right to left (when finding a ...
1
vote
3answers
43 views
“:first-of-type” works, “:last-of-type” doesn't
The following ":first-of-type" works for me, but the ":last-of-type" won't.
<div class="wrapper">
<div class="item"></div>
<div class="item"></div>
<div ...
1
vote
2answers
85 views
How to detect if browser support specified css pseudo-class?
What's concept of detecting support of any css pseudo-class in browser through JavaScript? Exactly, I want to check if user's browser supports :checked pseudo-class or not, because I've made some ...
1
vote
2answers
59 views
Are there any scenarios where pseudo classes wouldn't work?
This sounds like an abstract question, but I'm trying to troubleshoot this project I'm working on and I am at a loss.
I had to take over a project because the first developer was fired, so I made the ...
1
vote
2answers
42 views
How can I accomplish this without use of javascript?
I've got a page with a thumbnail on it (more to come, so the float:left property is necessary). The thumbnail is a Div, with an anchor in it, in that anchor is an image and some text. The text is ...
1
vote
2answers
75 views
:after pseudo-element working in FF, but not Safari or Chrome
I'm trying to add an :after pseudo-class to the .readmore class in Joomla.
.readmore
{
font-size:12px;
margin-bottom:2px;
color:#000 !important;
font-weight:bold;
display:inline;
}
...
1
vote
1answer
135 views
CSS Button :focus pseudo class
How Would I make it so that when I click a button, the button stays that color until another button is clicked?
To clarify, imagine you have a text box. When you click it, you can add a border ...
1
vote
2answers
61 views
Cannot change Background Color ONLY with CSS
Good morning,
I'm trying to change the background color on a link when the user hovers over it. With my current code, the link color will change as expected, but no change to the background color. ...
1
vote
3answers
121 views
pseudoclass :first-child not working
Am I doing something wrong?
css/sass:
#section
article
border-top: 1px solid black
&:first-child
border: none !important
html/haml:
#section
%h2 title
%article
stuff ...
1
vote
1answer
168 views
Using CSS pseudo class before and after
So I tried to experiment with CSS pseudo class before and after. I tried to use those pseudo to create header element.This is to reduce using div to hold left and right images. This is code for HTML
...