Tagged Questions
The css-expressions tag has no wiki summary.
13
votes
6answers
5k views
Disable grey border on anchor (<a>) elements on focus
I am trying to make the ugly grey border that appears around anchor tags go away. The CSS property "outline:none;" works for Firefox, but how can I do it in IE. Preferably using CSS expressions or ...
4
votes
3answers
217 views
CSS Expressions
I read somewhere that CSS Expressions were deprecated and shouldn't even be used. I had never heard of them and decided to take a look. I found a code example that kept a floating element in the ...
3
votes
3answers
276 views
Which browsers still support CSS expressions
From a blog:
The basic idea with CSS expressions is
that you will have calculation and
dynamic values for properties in the
CSS code, something that people have
found very useful. A simple ...
2
votes
5answers
3k views
Evaluate a css expression only in IE<7 w/out using conditional comments?
I already know: "Don't use css expressions!" My question is not about whether I should be using an expression or if there is an alternative; my question is simply: Can I get a css expression to only ...
1
vote
4answers
937 views
offsetWidth or CSS expression problem for IE6
I need to set the width of textboxes as 80% of it's parent. So first I used
td input[type="text"]
{
width: 80%;
}
But it was not rendering properly if the input is the child of td. So, I ...
0
votes
4answers
56 views
jQuery execute code on future DOM objects?
So here's the question:
I'm using jQuery to target DOM elements and set their heights based on the height of the browser window, parent elements, etc. Here is an example:
$('.multiPanelContainer ...
0
votes
3answers
96 views
CSS expressions or javascript?
I wonder whether it makes sense to use CSS expressions if you can just use javascript.
Which would be a better or faster?
Do CSS expressions work with disabled js?
0
votes
1answer
319 views
jQuery Ajax load images problem
I have a code that would call $.load() to get an HTML fragment. In the fragment there will be a list of images and a script that would do some calculation based on the list size. The fragment looks ...
0
votes
7answers
199 views
If I have a CSS solution for all browsers except IE then what should be chosen for IE? CSS expression vs JavaScript vs jQuery with plugin?
If I have a CSS solution for all browsers except IE then what should be chosen for IE?
CSS expression in IE conditional comments
or
JavaScript in IE conditional comments
or
jQuery + plugin in IE ...
-1
votes
1answer
362 views
Setting CSS Expression using $.css() in JQuery
I'm trying to set a css expression for an attribute for an element as follows.
var scrollTopExpr = '$(document).scrollTop()';
var expr = "expression(eval(" + scrollTopExpr + "))";
$(this).css("top", ...