Tagged Questions
7
votes
1answer
131 views
cssText or individual stylename?
When we are applying a lot of style changes using JavaScript to a single element, phpied & Writing Efficient JavaScript (slide 87) suggests:
instead of applying styles one by one using ...
2
votes
1answer
78 views
White marks appearing on my popup menu
I've got a popup menu div that is shown and hidden with the following jQuery:
$('#' + mnu).show('slide', { direction: 'down' }, 300);
In IE9 it displays correctly:
...but in IE7, it shows some ...
2
votes
1answer
111 views
Is there a way to determine when CSS parsing/rendering has completed?
Wondering for benchmarking purposes if there is a DOM event or other way to determine when the browser has finished parsing/rendering the CSS. I'm trying to optimize CSS selectors and need a way to ...
1
vote
1answer
76 views
Why does a transition occur when showing an element after setting a property while the element is hidden?
A live example can be seen here.
A red square (showing) is directly above a green square (hidden as overflow). Click on the square, and both colored squares are instantly made fully transparent. ...
1
vote
1answer
177 views
Preventing HTML reflow
I'm working on a webpage with user-resizable columns, and I'm having trouble with reflow when a column is resized, which causes elements to be pushed down and out of alignment as the column narrows. ...
1
vote
1answer
575 views
IE8 compatibility mode (or maybe IE7) reflow bug related to css position relative
Has anyone any comments about fallowing behaviour?
I've tested it on IE8 in compatibility mode, but i'm not sure about real IE7 behaviour.
Any other browsers behave normally.
When document reflows, ...
1
vote
3answers
847 views
How can I force a webpage page to render at a minimum resolution, regardless of how small the viewport shrinks?
I am rather new to complex CSS, and have a question- I have a page which positions a floating element along the bottom of the page. It does so by setting the Bottom: 0, and Position: Absolute.
When ...