0
votes
3answers
61 views
OS-Specific CSS?
In the past, I've seen nearly no difference between CSS in the same browsers on different platforms- pages on Safari on Mac usually look identical to Safari on Windows (and same wi …
0
votes
1answer
87 views
+150
IE8 focus pseudo class and Sibling Selector
I have some mark up and I am trying to have the "hints for some input" light up when the accosicated text input has focus. I am trying to use the focus pseudo class along with a si …
0
votes
1answer
21 views
CSS selector that applies a style to COLGROUP but only within TBODY (not THEAD)?
I would like to apply a background-color to a COLGROUP, but only within the TBODY of the table. Given a typical calendar table with a structure as the following:
<table>
& …
0
votes
2answers
39 views
Is it possible for lxml to work in a case-insensitive manner?
I'm trying to scrape META keywords and description tags from arbitrary websites. I obviusly have no control over said website, so have to take what I'm given. They have a variety o …
0
votes
3answers
21 views
CSS a.className:attr properties
I have the following html markup:
<span class="content_right_img">
<a href="url" class="pic_link"><img src="lnk.gif" alt="alt" /></a>
</span>
<p& …
2
votes
3answers
2k views
How to style <input type=”text”> in IE6 CSS?
Is there any elegant way of applying a certain style to all <input type="text"> elements under IE6? I can do it with some JavaScript, but I was wondering if there was a more …
0
votes
5answers
77 views
What’s the difference between these two jQuery selectors?
With this markup:
<div id="e">
<div id="f"></div>
</div>
Does $('#e > #f') return the same as $('#e #f')?
0
votes
3answers
71 views
Get parent of a child element that has a certain class
I have a nested menu like this:
<ul id="menu">
<li>Home
<ul>
<li>New</li>
<li class="selected">Open</li& …
-1
votes
3answers
56 views
A Regex builder for CSS queries
I've got a problem I need solved using Regex expressions; it involves taking a CSS selector and compiling a regex that matches the string representation of the nodes inside an HTML …
0
votes
2answers
67 views
How to detect mailto links with Hpricot/Nokogiri
I want to match links like <a href="mailto:my@email.com">foo</a>, but this doesn't work only works in Nokogiri:
doc/'a[href ^="mailto:"]'
What's the right way of doi …
4
votes
7answers
979 views
Getting ‘Last Child’ of Div ?
Is there another way to get the last child of a div element other than using p:last-child which does not work in IE at least?
0
votes
4answers
43 views
Is there a way to refer to an html element with multiple classes?
I have the following
<p class="main yellow">Hello World</p>
I would like to write a css element that refers to only elements with main and yellow. Is there a way to …
0
votes
7answers
70 views
What are the priorities among CSS selectors
CSS Question: If two different selectors apply to an element, who wins?
I know this shouldn't happen, but I want to tweak a legacy application, and the CSS is getting in the middl …
8
votes
5answers
136 views
What does > in CSS mean?
In the IUI css file, they use the following selectors:
body > *:not(.toolbar)
body > *[selected="true"]
What does the >, *:not() and *[] mean?
Thanks.
5
votes
4answers
89 views
CSS Selectors in Javascript with all H tags
Using Prototype JS library, I want to select all child link elements (A tags) regardless of whether their parent is: H1, H2, H3, H4, or H5 (etc) with a simple CSS Selector Rule (as …
