Tagged Questions
The css-inheritance tag has no wiki summary.
8
votes
2answers
386 views
CSS text-decoration property cannot be overridden by child element [closed]
Possible Duplicate:
How do I get this CSS text-decoration override to work?
Take a look at this simple example:
<a href="#"> A <span>red</span> anchor </a>
a {
...
8
votes
1answer
1k views
Inheritance of list-style-type property in Firefox (bug in Firebug?)
Let's have a look at some comments 1) on a page generated by Wordpress (it's not a site I maintain, I'm just wondering what's going on here). As these pages might disappear in the near future, I've ...
3
votes
2answers
129 views
Get element from which CSS rule is being inherited
In jQuery, we can easily get the CSS value for a given element with the css method:
$('#myElement').css('line-height'); // e.g. '16px'
Now, since this CSS value might have been inherited from a ...
2
votes
1answer
351 views
multiple-class CSS inheritance problem in IE
I have a class called ".spr" (for an image sprite) and many classes that alter the width, height and background-position attributes to show various parts of the sprite.
I also have ".on" classes to ...
1
vote
2answers
684 views
In CSS, want to override my a:link and a:hover directives to for a specific span
This will probably be a softball for you CSS folks...
I have a site like this:
<div id="header">
<span class="myheader">This is the name of my awesome site!!!!</span>
</div>
...
0
votes
2answers
51 views
CSS inheritance and specificity
I'm having trouble with a css stylesheet. I've narrowed it down to be about inheritance and specificity in the css styles.
Right now (simplified) I've got an HTML <body> that looks like the ...
0
votes
1answer
343 views
Override and disable Django admin CSS .dashboard .module table tr
I have some custom fields/modules in my Django admin template "app_index.html". Looking like this:
<tr>
<th>Element 1</th>
<th>Element 2</th>
</tr>
In ...
0
votes
3answers
2k views
How to avoid a th element from inheriting properties from a tr element in IE6/7
I've got a table which has a repeating background image on the header:
thead tr
{
border-collapse:collapse;
background: #D3D2D2 url(images/background-table-header.gif) repeat-x top;
}
And ...